vote up 3 vote down star
1

How to get the checked option in a group of radio inputs with JavaScript?

flag

45% accept rate
What do you want to use the option for ?-) Torbjørns answer returns the value, which in most situations would be sufficient, but sometimes it could be possible to do other things ... – roenving Oct 2 '08 at 13:55
I'm guessing he meant the value.... – Torbjørn Oct 2 '08 at 13:59

4 Answers

vote up 2 vote down check
<html>
  <head>
    <script type="text/javascript">
      function testR(){
        var x = document.getElementsByName('r')
        for(var k=0;k<x.length;k++)
          if(x[k].checked){
            alert('Option selected: ' + x[k].value)
          }

      }
    </script>
  </head>
  <body>
    <form>
      <input type="radio" id="r1" name="r" value="1">Yes</input>
      <input type="radio" id="r2" name="r" value="2">No</input>
      <input type="radio" id="r3" name="r" value="3">Don't Know</input>
      <br/>
      <input type="button" name="check" value="Test" onclick="testR()"/>
    </form>
  </body>
</html>
link|flag
But using document.all to get elements is a bad practice as it only works in a few browsers, use the standard document.getElementsByName instead !-) – roenving Oct 2 '08 at 14:47
You're right... but I think Daniel got the idea. Anyway, I changed "document.all" to "document.getElementsByName" – leoinfo Oct 2 '08 at 15:03
vote up 0 vote down

generic functions (loosely based on yours )

function getRadioGroupSelectedElement(radioGroupName) {

var radioGroup = document.getElementsByName(radioGroupName);
var radioElement = radioGroup.length;
for(radioElement; radioElement >= 0; radioElement--) {
    if(radioGroup[radioElement].checked){
        return radioGroup[radioElement];
    }
}
return false;

}

function getRadioGroupSelectedValue(radioGroupName) {

var selectedRadio = getRadioGroupSelectedElement(radioGroupName);
if (selectedRadio !== false) {
    return selectedRadio.value;
}
return false;

}

link|flag
vote up 2 vote down

If you need the actual element and not just the selected value, try this:

function findSelected(){
  for (i=0;i<document.formname.radioname.length;i++){
    if (document.formname.radioname[i].checked){
      return document.formname.radioname[i];
    }
  }
}
link|flag
vote up 3 vote down

http://www.somacon.com/p143.php

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.