linking in drop boxes

P

PT

I'm having trouble getting my drop boxes to link to other pages. any
suggestion on how to fix this annoying problem?
 
D

Don

Try this. (Copy Paste)

<form>
<select onchange="if(this.selectedIndex > 0 ) location.href='http://' +
this.options[this.selectedIndex].value">
<option>Select link</option>
<option value="www.microsoft.com">Microsoft</option>
<option value="msdn.microsoft.com">MSDN</option>
</select>
</form>

OR

Make your drop down then go over to HTML view and modify your <select> tag
so it looks like this
<select
onchange="if(this.options.selectedIndex>0)location.href=this.options[this.options.selectedIndex].value">
<option value="">Choose A Link</option>
<option value="http://www.youraddress.com/masks.htm">Masks</option>
etc.......

HTH

Don
===============================
| I'm having trouble getting my drop boxes to link to other pages. any
| suggestion on how to fix this annoying problem?
 
Top