Answers for "how to get radio button value in jquery on load"

3

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()
Posted by: Guest on July-07-2020
1

How can I know which radio button is selected via jQuery

if ($('input[name="radioName"]:checked', '#myForm').length) {
	//Yes, it's checked!
}
Posted by: Guest on May-19-2020

Code answers related to "how to get radio button value in jquery on load"

Code answers related to "Javascript"

Browse Popular Code Answers by Language