Jump to content

Menu...


forumnz

Recommended Posts

[code]
<select name=navi onChange="go()">
<option value=''>--- Select your destination ---
<option value="js.html">General Introduction
<option value="placejs.html">Placing JavaScripts
<option value="links.html">JavaScript Links
</select>
[/code]

[code]
function go()
{
box = document.forms[0].navi;
destination = box.options[box.selectedIndex].value;
if (destination) location.href = destination;
}
[/code]

This might work for you.
Link to comment
https://forums.phpfreaks.com/topic/35712-menu/#findComment-169212
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.