vote up 1 vote down star

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.

flag

4 Answers

vote up 4 vote down check

You should do this instead:

var s = document.getElementById('item1');
var item1 = s.options[s.selectedIndex].value;
link|flag
oops, this does not work in IE 6, but does in IE 8 :( – unknown (yahoo) Oct 8 at 17:55
Should work fine in IE6 - what error do you get? – Greg Oct 8 at 18:18
no error per se, i have a check that checks for a value, and the value is never there – unknown (yahoo) Oct 8 at 21:24
vote up 0 vote down

Thank you guys, really great great thanks.

I wasted too much time to find a solution "Why this f'in IE does not loop and why it does not get the drop drown value?!". Tried too many different ways but no solutions then yet. Your post made me see that the one who has fault was me. I passed away my combo options value-free.

Thanks for getting me up.

link|flag
vote up 2 vote down

Since your option tags don't have the attribute "value" IE6 and IE7'll return you an empty string. You should read the value from the "text" field of the Option object like this:

var item1 = s.options[s.selectedIndex].text;

in item1 you'll have the value you need without breaking the compatibility with Firefox and IE 8.

link|flag
vote up 1 vote down

As an addendum to answer #1, be careful as <select>.selectedIndex can be -1 some times which will throw an exception when passed into <select>.options[n]. As such, you might want do do a quick test:

var s = document.getElementById('item1');
var item = (-1 != s.selectedIndex)? 
               s.options[s.selectedIndex] : null;

EDIT

Per Tim's comment, s.selectedIndex can be -1 if you set it via JavaScript or you create an empty <select> box.

link|flag
Do you know when selectedIndex can be -1? I've never seen that. – Tim Down Oct 8 at 17:32
The only way selectedIndex can be -1 is if you've explictly set it to be -1 via JavaScript. – Tim Down Oct 13 at 13:26
However, I've downvoted too hastily and now I can't remove it unless you edit. Sorry. – Tim Down Oct 13 at 13:27
Tim, no worries, and I've edited the answer. – mimetnet Oct 13 at 14:22
The JSREF states: "If no option is selected, selectedIndex has a value of -1." – anddoutoi Nov 12 at 14:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.