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':
|
||||||
|
|
|
The More info at the jQuery docs. |
||||||||||
|
|
|
You can use the :checked selector along with the radio selector.
|
||
|
|