How to get the value of selected radio button in a group using jQuery
:checked
You can simply use the jQuery :checked selector in combination with the val() method to find the value of the selected radio button inside a group.
val()
Let's try out the following example to understand how it basically works:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery Get Selected Radio Button Value</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script> $(document).ready(function(){ $("input[type='button']").click(function(){ var radioValue = $("input[name='gender']:checked").val(); if(radioValue){ alert("Your are a - " + radioValue); } }); }); </script> </head> <body> <h4>Please select your gender.</h4> <p> <label><input type="radio" name="gender" value="male">Male</label> <label><input type="radio" name="gender" value="female">Female</label> </p> <p><input type="button" value="Get Value"></p> </body> </html>
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Use the jQuery
:checkedselectorYou can simply use the jQuery
:checkedselector in combination with theval()method to find the value of the selected radio button inside a group.Let's try out the following example to understand how it basically works:
need an explanation for this answer? contact us directly to get an explanation for this answer