How come this works.
$('input:checked')
and this won't?
$('input').is(':checked')
Thanks.
|
|
|
The second version should use
It seems like |
|||||||
|
|
You want to check if any radio button on the page is selected? No need to do that, there's always one that's selected (radio button = exactly one option selected). Want to test if a radio button with a certain ID is selected?
Want a list of all checked radio buttons? This returns a jQuery object containing the radio inputs.
If you want to restrict it to inputs with a certain name:
|
|||
|
|
|
You can try this one.Its worked & tested also.
Or You can get help from this sample http://daxpanganiban.com/javascript/get-value-of-radio-button-using-jquery Cheers! |
|||
|
|