I am having 4 radiobuttons in my web page like below:

<label for="theme-grey"><input type="radio" id="theme-grey" name="theme" value="grey" />Grey</label>
<label for="theme-grey"><input type="radio" id="theme-pink" name="theme" value="pink" />Pink</label>
<label for="theme-grey"><input type="radio" id="theme-green" name="theme" value="green" />Green</label>

Now in jQuery I want to get the value of selected radiobutton on click of any radiobutton out of above three. In jQuery we have id (#) and class (.) selectors but what if I want to put event on radiobutotn using thier names? as below?

$("<radiobutton name attribute>").click(function(){});

Please tell me how to solve this problem.

Thanks

link|improve this question

feedback

7 Answers

up vote 65 down vote accepted

This should do it, all of this is in the documentation, which has a very similar example to this:

$("input:radio[name=theme]").click(function() {
    var value = $(this).val();
});

I should also note you have multiple identical IDs in that snippet. This is invalid HTML. Use classes to group set of elements, not IDs, as they should be unique.

link|improve this answer
working for me.... – Prashant Jun 15 '09 at 10:49
thats working fine.. thanks Paolo – Parag May 1 '11 at 6:10
8  
this is the wrong answer. This will simply return the value of a "clicked" radio button. Clayton below has the right answer. – gargantaun Feb 29 at 16:03
@gargantaun - if you click a radio button, what happens to it? – Paolo Bergantino Mar 2 at 0:23
1  
Good point. Although it's still not "How to get selected radiobutton value using its name in jQuery?". It's "How to get selected radiobutton value when clicking on it using jQuery?". A small difference, but one that baffled me for a bit. – gargantaun Mar 2 at 10:13
show 1 more comment
feedback

Just want to point out that Jeff's answer might suit others because it can be used to get the value from anywhere, not just within a click handler for the radio button.

$('input:radio[name=theme]:checked').val();
link|improve this answer
19  
This is correct answer. – Pawka Oct 6 '10 at 7:07
3  
Just what the doctor ordered! – M. Faraz Jan 5 at 17:23
Worked perfectly!! – Sherwin Flight Apr 12 at 6:56
feedback

To determine which radio button is checked, try this:

$('input:radio[name=theme]').click(function() {
  var val = $('input:radio[name=theme]:checked').val();
});

The event will be caught for all of the radio buttons in the group and the value of the selected button will be placed in val.

Update: After posting I decided that Paolo's answer above is better, since it uses one less DOM traversal. I am letting this answer stand since it shows how to get the selected element in a way that is cross-browser compatible.

link|improve this answer
Thank you very very much! – griegs Oct 28 '09 at 1:48
Agreed, might not be the correct answer for the OP, but still helpful. – Steve Duitsman Aug 31 '11 at 14:25
feedback

If you'd like to know the value of the default selected radio button before a click event, try this:

alert($("input:radio:checked").val());
link|improve this answer
feedback

Something like this maybe?

$("input:radio[name=theme]").click(function() { 
 ...
});

When you click on any radio button, I believe it will end up selected, so this is going to be called for the selected radio button.

link|improve this answer
1  
The @ is invalid as of jQuery 1.3 (deprecated prior to that, even). blog.jquery.com/2009/01/05/help-test-jquery-13-beta-2 "Old, XPath, style attribute selectors: [@attr=value]. These have been deprecated for quite some time - and we’re finally removing them. To fix it just remove the @!" – simplemotives Jun 12 '09 at 22:09
Thanks for pointing out ... editing my post. – tschaible Jun 12 '09 at 22:17
feedback
$('input:radio[name=theme]').bind(
  'click',
  function(){
    $(this).val();
});
link|improve this answer
feedback

I have written a blog with source code on how to use radio buttons with jquery at http://www.devblogging.com/2011/05/12/radio-button-jquer/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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