Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have multiple radiobutton lists within a fieldset tag.

I only ever want one item to be selectable from the whole list... currently i can select one item from each radio button list - which is normal

I know the proper way would to do this would be to have one long radio button list, but that is not an option.

Is there a way in javascript/jquery that given the fieldset class name - say

<fieldset class="mylistofradiolists"> that when a radio button within it is selected all other items are deselected and only that single one remains selected

Thanks

share|improve this question
1  
you can use the same name for all the radio button inside one fieldset – Miqdad Ali Jul 3 '12 at 10:54
1  
@MiqdadAli "I know the proper way would to do this would be to have one long radio button list, but that is not an option." He's already said that's not possible, for whatever reason. – Anthony Grist Jul 3 '12 at 10:55

2 Answers

up vote 5 down vote accepted

You can do that with the following code

$radios =  $('.mylistofradiolists :radio');
$radios.on('change',function(){
   $radios.not(this).prop('checked',false);
});

When an radio is selected all other radio's except that are deselected within that container.

It's better to use

$radios =  $('.mylistofradiolists [type=radio]');

Instead of

$radios =  $('.mylistofradiolists :radio');

As the doc for :radio selector says

Because :radio is a jQuery extension and not part of the CSS specification, queries using :radio cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method.

For better performance in modern browsers, use [type="radio"] instead.

share|improve this answer
1  
@undefined, yes it is, if all the radio's have the same name. But in this case they doesn't. I am assuming he is using different names for radio groups as he mentioned radio button list – Joy Jul 3 '12 at 10:54
1  
@undefined Why is it unreasonable? From a user view point, there's nothing different from what they're used to - only being able to select one option from a list. – Anthony Grist Jul 3 '12 at 10:57
1  
@undefined I agree, the preferable solution would be to render all of the radios with the same name attribute, and let the browser handle it. However, the question indicates this isn't a potential solution, though it doesn't say why. One possible reason would be the HTML being rendered by server-side code that they don't have the ability to modify. – Anthony Grist Jul 3 '12 at 11:04
1  
@AnthonyGrist in that case I agree. – undefined Jul 3 '12 at 11:05
1  
@raklos, sorry, missed the spaces while re-formatting. Updated check now. – Joy Jul 3 '12 at 11:25
show 5 more comments

You can achieve the functionality of selecting only one radio button from list of radio buttons which are seperated by fieldset tag by keeping each "name" attribute of the radio button same.

e.g :- for first field set - keeping the radio button name field same.

<fieldset >
<input type="radio" name="food" /> : Italian<br />
<input type="radio" name="food" /> : Greek<br />
<input type="radio" name="food" /> : Chinese<br />
<fieldset >

and for second fieldset , keeping the name attribute same :-

<fieldset >
<input type="radio" name="food" /> : Indian<br />
<input type="radio" name="food" /> : UK<br />
<fieldset >

Hope this anser user question :)

share|improve this answer
He's already stated in the question that he can't do this: "I know the proper way would to do this would be to have one long radio button list, but that is not an option." – Anthony Grist Jul 3 '12 at 11:01

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.