Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
jQuery attribute selector for multiple values

I have this

$('input:radio[name=foo]').change(function() {
    blah();
});

$('input:radio[name=bar]').change(function() {
    blah();
});

Can I do something like this?

$('input:radio[name=foo||bar]').change(function() {
    blah();
});

what If I had another one?

$('input:radio[name=foo||bar||foobar]').change(function() {
    blah();
});

I can't use class which would be ideal as this is a custom framework (not mine) that generates the HTML which is overriding my class. Also there is no id selector available just the name attribute. I think I'm stuck doing separate functions but wanted to pose the question to see if anyone can think outside the box on this one.

Note: this project uses jQuery 1.3.2 and I can't upgrade just yet. And before you say anything, yeah I'm with you on upgrading...

share|improve this question

marked as duplicate by Felix Kling, Rory McCrossan, pimvdb, Matt, Graviton Mar 1 '12 at 4:33

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 10 down vote accepted

There is no 'or' character, but you can use multiple selectors - you just separate them by commas:

$('input:radio[name=foo], input:radio[name=bar]').change(function() {
    blah();
});

Or better yet, use a class selector as this is exactly what they were designed for.

share|improve this answer
1  
I did not know you could comma delimiter, thanks! Learned something new – Phill Pafford Feb 29 '12 at 15:31
+1 did not know you could do that either. good answer. – Matt K Feb 29 '12 at 15:33

Unfortunately there isn't a simple selector for or within [attr] selectors. You can use a comma (,) to separate your selections:

$('input:radio[name=foo], input:radio[name=bar]').change(...);

Or if your selection happens to be longer, you can use $.fn.filter:

$('#foo #bar #baz .fizz .buzz input:radio').filter('[name=foo], [name=bar]').change(...);

I recommend reviewing the entire list of jQuery selectors.

share|improve this answer

jQuery's $() function uses CSS selectors (nearly all of CSS3 plus a few of its own). Their syntax has nothing whatsoever to do with JavaScript's logical operators.

Neither CSS3 nor jQuery offer a "match any of these", so you use a selector group instead:

$('input:radio[name=foo], input:radio[name=bar], input:radio[name=foobar]').change(function() {
    blah();
});
share|improve this answer

Another alternative is adding a new filter for regex:

http://james.padolsey.com/javascript/regex-selector-for-jquery/

Then you can do something like

$('input:radio:regex(name, ^(foo|bar|baz)$)')
share|improve this answer

Your proposed solution does work on newer versions of jQuery. You can chain filter onto your query, though ...

$('input:radio').filter("[name=foo],[name=bar]").change(function() {
   blah();
});

View and play with the jsfiddle here http://jsfiddle.net/NAgv5/1/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.