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? Link to comment https://forums.phpfreaks.com/topic/208977-select-box-problem/ 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; Link to comment https://forums.phpfreaks.com/topic/208977-select-box-problem/#findComment-1091567 Share on other sites More sharing options...
oddim Posted July 27, 2010 Author Share Posted July 27, 2010 Thanks Link to comment https://forums.phpfreaks.com/topic/208977-select-box-problem/#findComment-1091869 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.