Hi,
I want to use javascript to set the value of a select box shown below.
for example if this was a text box i would simply write
I want to use javascript to set the value of a select box shown below.
Code:
<select id="panel_type"> <option id="f">FLOOR STANDING</option> <option id="w">WALL MOUNTED</option> </select>
Code:
document.company1.panel_type.value = "FLOOR STANDING";
Comment