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?
|
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:
But how do I know which one is selected? |
||||
|
|
|
To get the value of the selected radioName item of a form called 'myForm':
|
|||||||||||||||||||||
|
|
Use this..
|
|||||||||||||||||
|
|
If you already have a reference to a radio button group, for example:
Use the
Note: This answer was originally correcting another answer that recommended using
|
|||||||||||||||||
|
|
This should work:
Note the "" usaged around the input:checked and not '' like the Peter J's solution |
|||
|
|
|
You can use the :checked selector along with the radio selector.
|
||||
|
|
Get all radios:
Filter to get the one thats checked
|
|||
|
|
|
In a JSF generated radio button (using
where selectOneRadio ID is radiobutton_id and form ID is form_id. Be sure to use name instead id, as indicated, because jQuery uses this attribute (name is generated automatically by JSF resembling control ID). |
|||
|
|
|
Also, check if the user does not select anything.
|
||||
|
|
|
If you have Multiple radio buttons in single form then
This is working for me. |
||||
|
|
|
In my case I have two radio buttons in one form and I wanted to know the status of each button. This below worked for me: HTML side:
Javascript side:
|
|||
|
|
|
Here's how I would write the form and handle the getting of the checked radio. Using a form called myForm:
Get the value from the form:
If you're not posting the form, I would simplify it further by using:
Then getting the checked value becomes:
Having a class name on the input allows me to easily style the inputs... |
|||
|
|
|
|||||
|
|
To get the value of the selected radio that uses a class:
|
|||
|
|
|
I wrote a jQuery plugin for setting and getting radio-button values. It also respects the "change" event on them.
Put the code anywhere to enable the addin. Then enjoy! It just overrides the default val function without breaking anything. You can visit this jsFiddle to try it in action, and see how it works. |
|||
|
|