Published
- 1 min read
how to get the value of radio button in jquery
The solution for this is noted below
how to get the value of radio button in jquery
Solution
By LOVE
Here , name=Gender is the name attribute value of the radio button
$("input[name='Gender']:checked").val()
Try other methods by searching on the site. That is if this doesn’t work