How to get the value of a radio button within a radio button group when selected using JQuery

H

How Can We Help?

How to get the value of a radio button within a radio button group when selected using JQuery

  • Give all the radio buttons within a group the same name
    <input type="radio" name="RADIOGROUP" value="1" />
    <input type="radio" name="RADIOGROUP" value="2" />
    <input type="radio" name="RADIOGROUP" value="3" />
    <input type="radio" name="RADIOGROUP" value="4" />
    
  • Now use the following JQuery code to obtain the value for the selected radio button within the Group
    $("input[name=RADIOGROUP]").change(function(){
            alert($(this).val());
     });
    

About the author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

About Author

Ian Carnaghan

I am a software developer and online educator who likes to keep up with all the latest in technology. I also manage cloud infrastructure, continuous monitoring, DevOps processes, security, and continuous integration and deployment.

Follow Me