I have a select box:
<select id="item1" name="Item 1">
<option></option>
<option>Camera</option>
<option>Microphone</option>
<option>Tripod</option>
</select>
And I have this JavaScript:
var item1= document.getElementById("item1").value;
item1
always shows empty, never the option selected. However, this works in Firefox.