oddim Posted July 27, 2010 Share Posted July 27, 2010 TO = document.getElementById("TO").value; This will get the selected value of the Select Drop Down Box in FF, but this doesn't work with IE... any ideas? Quote Link to comment Share on other sites More sharing options...
Psycho Posted July 27, 2010 Share Posted July 27, 2010 var toObj = document.getElementById("TO"); var toVal = toObj.options[toObj.slectedIndex].value; Quote Link to comment Share on other sites More sharing options...
oddim Posted July 27, 2010 Author Share Posted July 27, 2010 Thanks Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.