What is the syntax for doing something like:
input[name=\"Sex\" AND value=\"M\"]
Basically, I want to select the input element
input
Just to add that there should be no space between the selector and the opening bracket.
td[someclass]
will work. But
td [someclass]
will not.