vote up 7 vote down star

I have two radio buttons and want to post the value of the selected one, how can I get the value with jQuery?

I can get all of them like this:

$("form :radio")

But how do I know which one is selected?

flag

3 Answers

vote up 9 vote down check

To get the value of the selected radioName item of a form called 'myForm':

$('input[name='radioName']:checked', '#myForm').val()
link|flag
I ended up using this: $('form input[type=radio]:checked') – Juan Manuel Feb 27 at 20:02
Glad you got it working! – Peter J Feb 27 at 20:03
This was helpful... – CarolinaJay65 May 27 at 16:31
vote up 1 vote down

The val() attribute will tell you. So $("form :radio").val()

More info at the jQuery docs.

link|flag
hmm... I'm getting always the same value no matter which one is selected – Juan Manuel Feb 27 at 19:57
Are you sure you have selected the correct radio button? The form:radio will select all radio buttons on the page. – acrosman Feb 27 at 20:02
1  
val() does not account for radio button groups. You need :checked for that. – Crescent Fresh Feb 27 at 20:37
Sorry, the documentation wasn't very clear about radio buttons. I'd used it before with dropdowns and I figured that it would return the selected value. – bbrown Feb 27 at 21:13
vote up 0 vote down

You can use the :checked selector along with the radio selector.

 $("form :radio").find(":checked").val();
link|flag

Your Answer

Get an OpenID
or

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