I have several radio buttons with the same name. Like this:
<form name="formA">
<input type="radio" name="myradio" value="A"/>
<input type="radio" name="myradio" value="B"/>
<input type="radio" name="myradio" value="C"/>
<input type="radio" name="myradio" value="D"/>
</form>
Now I have to add event listener through javascript to all the radio buttons. If the below pseudocode is wrong, then please tell me how to do it-
var radios = document.forms["formA"].elements["myradio"];
for(radio in radios) {
radio.onclick = function() {
alert(radio.value);
}
}
For in loops in JavaScript return the keys, not the values. To get the for in loop to work, assuming you haven’t added custom properties to your array, you’d do:
But you should always loop an array with a regular for loop to avoid accidentally including custom-added enumerable properties: