Hello,

Can someone please tell me how to write a code the will get me the radio button value using jquery.

Thanks

Comments

roper.’s picture

$('form#myformid :radio[name=myradioname]:checked').val();

Should do it.