Skip to content

Instantly share code, notes, and snippets.

@victorpendleton
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save victorpendleton/735774745d3a03bc3100 to your computer and use it in GitHub Desktop.
Save victorpendleton/735774745d3a03bc3100 to your computer and use it in GitHub Desktop.
Display value of checked radio button
var rbtn = document.getElementsByName("objname");
var nbtns = rbtn.length;
for (i=0; i<nbtns; i++) {
if (rbtn[i].checked) {
window.alert(rbtn[i].value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment