[jQuery] Is it possible to select on multiple attribute values?
Hello,
I already know that you can combine multiple attribute selectors, &&-
style, by doing:
$("*[name='someName'][value='someValue']");
However, what I was wondering is, is there any way to combine multiple
attribute selectors, ||-style, such that I could select:
$("*[name='someName'][value='someValue']").add("*[name='someName']
[value='someOtherValue']");
with a single select? I'm imagining a syntax of something like:
$("*[name='someName'][value='someValue'||'someOtherValue']");
(but, obviously, that syntax doesn't work).
The repetition of "[name='someName']" seems unnecessary to me, but I
can't figure out any way to get around it without an "or value=" type
selector. Any help would be appreciated (even if it's just "no you
can't do that, go bug the developers" ;-)).
Jeremy