Forum Moderators: open
the problem i am having is that it works fine but when i go to click on something it dosnt go anywhere i.e it hast linked.
Here is the html for my dropdown. please can you see how i can get this to work thanks
<form name="MyForm" method="get" action="what do i put in here please??">
<select name="select">
<option value="http://www.myurl.com">Home</option>
</select>
</form>
You don't have a submit button. You will either need a submit button or an onChange event handler so it will fire.
<script language="JavaScript" type="text/javascript">
<!--
function getIt(){
location=document.myform.drop.options[document.myform.drop.selectedIndex].value;
}
//-->
</script>
<form name="myform">
<select name="drop" onChange="getIt()">
<option value="http://www.myurl.com">Home</option>
</select>
</form>
<script language="JavaScript" type="text/javascript">
<!--
function getIt(){
location=document.myform.drop.options[document.myform.drop.selectedIndex].value;
}
//-->
</script>
<form name="myform" action="getIt()">
<select name="drop" onChange="getIt()">
<option value="http://www.myurl.com">Home</option>
</select>
<input type="submit" value="Go">
</form>
It's personal preference and support for any browsers that may not support onChange. I can't think of any, but there may be some older ones out there.
<script language="JavaScript" type="text/javascript">
<!--
function getIt(){
location=document.myform.drop.options[document.myform.drop.selectedIndex].value;
}
//-->
</script>
<form name="myform" action="getIt()">
<select name="drop" onChange="getIt()">
<option value="http://www.myurl.com">Home</option>
<option value="http://www.myurl.com/page">page</option>
<option value="http://www.myurl.com/page1">page1</option>
<option value="http://www.myurl.com/page2">page2</option>
<option value="http://www.myurl.com/page3">page3</option>
</select>
<input type="submit" value="Go">
</form>
ps you might want to take the URL out of your last post before a mod spots it and removes for you. They dont like for people to drop URLs just add it to your profile.