jQuery get value of selected radio button

Just use.

$('input[name="name_of_your_radiobutton"]:checked').val();

It is that easy.

Leave a Comment