how to return the value of an input table of a radio button to 1 when it is changed to another radio table code example
Example 1: how to get the value of radio button in jquery
By LOVE
Here , name=Gender is the name attribute value of the radio button
$("input[name='Gender']:checked").val()
Example 2: get value of checked radio button jquery
$('form input[type=radio]:checked').val();