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.

I have three radio buttons in a search group: Zip, City and County. How can I toggle the checked states of all radio buttons in the group when one of them is clicked?

<input id="SC5_zipR" type="radio" value="" />
<input id="SC5_cityR" type="radio" value="" />
<input id="SC5_countyR" type="radio" value="" />

$("#SC5_zipR").prop('checked', true); //default checked value for zip code option

I am using Jquery 1.6.2. Thank you in advance, Attila

share|improve this question
2  
Are you sure you want radio buttons, not checkboxes? – avetarman Aug 3 '11 at 15:42
Yes radio buttons. These are search option radio buttons to search by zip, city or county. – reinhat Aug 3 '11 at 16:24

1 Answer

up vote 3 down vote accepted

Give them all the same name. It's usually how radio buttons are done:

<input id="SC5_zipR" name="sc5" type="radio" value="zip" />
<input id="SC5_cityR" name="sc5" type="radio" value="city" />
<input id="SC5_countyR" name="sc5" type="radio" value="county" />

Demo here: http://jsfiddle.net/naveen/9jRPc/

share|improve this answer
+1: this was the correct one :) – naveen Aug 3 '11 at 15:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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