Forum Moderators: open
It works in IE, Opera, etc. Unfortunatly, in Netscape/Mozilla, the select box does not pull down. The select box kinda works... you can click on it, and then use the arrow keys to select what you want, and then press enter. However, the options that you can select with a mouse will not pop down.
There shouldn't be anything else in the page causing the problem, because I tested it in a page with nothing but the select box pulldown.
Mostly I am looking if people have dealt with this problem before. Sorry I can't show you more, as I am not allowed to post the code or javascript due to a strict non-disclosure-agreement. That might limit how people can help, but any knowledge/speculation on what is causing the problem would be greatly appreciated.
Welcome to these forums ;)
This select box works in...
<script type="text/javascript">
<!--
function webPages() {
location.href=document.forms[0][0].options[document.forms[0][0].selectedIndex].value;
}
//-->
</script>
<form action="">
<select onchange="webPages()">
<option>selections</option>
<option value="http://www.webmasterworld.com/">webmasterworld</option>
<option value="http://www.w3schools.com/">w3schools</option>
</select>
</form>