Forgive my ignorance, I am new to JS and I am trying to learn how to allow an Object Property Name to be modified by using a variable, but I am unsure if this is a) possible; and b) what the correct way to do it would be.
Say you have:
document.form1.select1.value = 10;
What I want to be able to do is have "select1" be a variable so I can loop through many instances of this in a script.
Any help would be greatly appreciated!
John
Say you have:
document.form1.select1.value = 10;
What I want to be able to do is have "select1" be a variable so I can loop through many instances of this in a script.
Any help would be greatly appreciated!
John