Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a list of radio buttons. Each radio button has a dynamic name. Is there a way to check if they are all selected? Because most radio validation scripts uses a static name.

share|improve this question

1 Answer

up vote 2 down vote accepted

If you know the id of some container, you can find the radio buttons with "getElementsByTagName". Thus if your HTML looks something like this:

<form id='x-form' action='...'>
    <input type='radio' name='$[xyz}'>
    <!-- ... -->

then you could check the radio buttons like this:

function allRadioButtonsSelected(formId) {
  var form = document.getElementById(formid);
  var inputs = form.getElementsByTagName('INPUT');
  for (var i = 0; i < inputs.length; ++i) {
    if (inputs[i].type.toLowerCase == 'radio' && !inputs[i].checked)
      return false;
  }
  return true;
}

Your life would be considerably easier if you were using a framework like jQuery.

share|improve this answer
you can use form.elements to get a list of all the input elements in a form too. – nickf Feb 24 '10 at 13:29
true - actually it's been a while since I even thought about doing something like that without jQuery :-) – Pointy Feb 24 '10 at 14:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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