Radio And Dropdown Menu Are Not Working?
My code is not working properly, problems are in the JS function when I trying to get value from radio button and dropdown menu. Can anyone tell me what's wrong? CSS: #mytable {
Solution 1:
You have a few issues here:
getElementByName
should begetElementsByName
- You need to give the
radio
buttons the same name, so that only one can be selected document.getElementsByName("letterX").checked
won't work as it returns more than one element.var colorList = document.getElementsByName("color")
should bevar colorList = document.getElementById("color");
(be sure to change your<select>
toid="color"
)
I've updated your code in the following jsFiddle.
Changes to your HTML:
1. <inputtype="radio"id="plus" name="radioButton" value="PlusSign" />
2. <inputtype="radio"id="letterx" name="radioButton" value="LetterX" />
3. <inputtype="radio"id="letterh" name="radioButton" value="LetterH" />
4. <select id="color">
JavaScript:
functioncolorit(){
var letter;
if(document.getElementById("plus").checked) letter = "+";
elseif(document.getElementById("letterx").checked) letter = "X";
elseif(document.getElementById("letterh").checked) letter = "H";
var colorList = document.getElementById("color");
var x = document.getElementById('mytable').getElementsByTagName('td');
for(i=0;i<x.length;i++) {
x[i].style.backgroundColor = colorList.options[colorList.selectedIndex].text;
x[i].innerHTML = letter;
}
}
Post a Comment for "Radio And Dropdown Menu Are Not Working?"