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

I am having 4 radio buttons 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-pink"><input type="radio" id="theme-pink" name="theme" value="pink" />Pink</label>
<label for="theme-green"><input type="radio" id="theme-green" name="theme" value="green" />Green</label>

Now in jQuery I want to get the value of the selected radio button on the clicking of any radio button out of the 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.

share|improve this question
1  
you don't strictly need to specify the attribute 'for', as long as the fields are included between their corresponding 'label' tags – Lucius Sep 18 '12 at 10:22
1  
jQuery 1.8 and above changes this.... I added an answer below explaining. – klabranche Oct 3 '12 at 17:02

13 Answers

up vote 100 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.

share|improve this answer
62  
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 '12 at 16:03
1  
@gargantaun - if you click a radio button, what happens to it? – Paolo Bergantino Mar 2 '12 at 0:23
6  
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 '12 at 10:13
1  
According to the question this answer is correct. in global view we go for clayton's answer. – krish May 27 '12 at 5:32
1  
This was not the answer I was looking for because it still took the value of the first radio button in the list. The answer below is the correct answer. – Adam Levitt Jul 15 '12 at 20:43
show 4 more comments

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();
share|improve this answer
92  
This is correct answer. – Pawka Oct 6 '10 at 7:07
10  
Just what the doctor ordered! – M. Faraz Jan 5 '12 at 17:23
2  
Worked perfectly!! – Sherwin Flight Apr 12 '12 at 6:56
7  
As of jQuery 1.8 use [type='radio'] instead of :radio that way jQuery can take advantage of the performance boost provided by the native DOM querySelectorAll() method. – Adam Oct 28 '12 at 18:01
Thanks its working – Mansoorkhan Cherupuzha May 16 at 11:58

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.

share|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
Base don how I READ the question, this was the answer I needed. :checked is what i was missing in my equation. Thanks. – dlackey Oct 25 '12 at 15:00
As of jQuery 1.8 use [type='radio'] instead of :radio that way jQuery can take advantage of the performance boost provided by the native DOM querySelectorAll() method. – Adam Oct 28 '12 at 18:02

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());
share|improve this answer

This works great for me. For example you have two radio buttons with the same "name", and you just wanted to get the value of the checked one. You may try this one.

$valueOfTheCheckedRadio = $('[name=radioName]:checked').val();
share|improve this answer
1  
thanks mate. simple & easy to use – Sagive SEO Sep 12 '12 at 12:43

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.

share|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 @!" – racerror Jun 12 '09 at 22:09
Thanks for pointing out ... editing my post. – tschaible Jun 12 '09 at 22:17
<input type="radio" name="ans3" value="help"> 
<input type="radio" name="ans3" value="help1">
<input type="radio" name="ans3" value="help2">

<input type="radio" name="ans2" value="test"> 
<input type="radio" name="ans2" value="test1">
<input type="radio" name="ans2" value="test2">

<script type="text/javascript">
  var ans3 = jq("input[name='ans3']:checked").val()
  var ans2 = jq("input[name='ans2']:checked").val()
</script>
share|improve this answer

I found this question as I was researching an error after I upgraded from 1.7.2 of jQuery to 1.8.2. I'm adding my answer because there has been a change in jQuery 1.8 and higher that changes how this question is answered now.

With jQuery 1.8 they have deprecated the pseudo-selectors like :radio, :checkbox, :text.

To do the above now just replace the :radio with [type=radio].

So your answer now becomes for all versions of jQuery 1.8 and above:

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

You can read about the change on the 1.8 readme and the ticket specific for this change as well as a understand why on the :radio selector page under the Additional Information section.

share|improve this answer
:checked is not deprecated. So you can use $("input[type='radio'][name='theme']:checked") – Adam Oct 28 '12 at 17:59

The following code is used to get the selected radio button value by name

jQuery("input:radio[name=theme]:checked").val();

Thanks Adnan

share|improve this answer
hmm .. didn't I fix your code formatting in your last reply? Please take care of it yourself :-) – kleopatra Mar 6 at 10:56

can also use a CSS class to define the range of radio buttons and then use the following to determine the value

$('.radio_check:checked').val()
share|improve this answer

This worked for me..

HTML:

<input type="radio" class="radioClass" name="radioName" value="1" />Test<br/>
<input type="radio" class="radioClass" name="radioName" value="2" />Practice<br/>
<input type="radio" class="radioClass" name="radioName" value="3" />Both<br/>

Jquery:


    $(".radioClass").each(function() {
        if($(this).is(':checked'))
        alert($(this).val());
    });

Hope it helps..

share|improve this answer
$('input:radio[name=theme]').bind(
  'click',
  function(){
    $(this).val();
});
share|improve this answer

You have another cool and clean way to do this. You can use the event argument in the callback function to get the clicked element!

2 solutions : with or without Jquery (except for the binding of course)

With Jquery

$('input[type=radio]').click(function(e){
    $(e.currentTarget).val();
})

The argument in the function callback is the event. It's attached to its target, which will directly be your clicked radio button!

Without Jquery

$('input[type=radio]').click(function(e){
        e.currentTarget.value;
    })

This will also return your value, without even checking your DOM again. I don't know about browser compatibility to be honest on that one.

if you have any compatibility problem with

e.currentTarget

you can also use

e.target

which will return your clicked element too!

share|improve this answer

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.