Skip to main content
added 57 characters in body
Source Link
tvanfosson
  • 529.9k
  • 102
  • 698
  • 798

You can use the :checked selector along with the radio selector.

 $("form :radio").find("radio:checked").val();

You can use the :checked selector along with the radio selector.

 $("form :radio").find(":checked").val();

You can use the :checked selector along with the radio selector.

 $("form:radio:checked").val();
Source Link
tvanfosson
  • 529.9k
  • 102
  • 698
  • 798

You can use the :checked selector along with the radio selector.

 $("form :radio").find(":checked").val();