I have a HTML form with many components. I need to check whether a radio button is selected to perform a sub task according to the selection. Can someone help me with the proper JQuery code?
$('input[name=radioName]:checked', '#yourFormID').val()
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
$('input[name=radioName]:checked', '#yourFormID').val()