Drop Down Menu maker

This online coder will produce the script to enable you to make a custom drop down menu for your site similar to the one below.
Credit for the script: 123webmaster.com


 

Fill in this form below:

Click To load selected page immediately

Click To use a  button to load selected page
TEXT IN MENU
This what you will see
LINK TO JUMP TO
http://YOUR-URL.html

NOTE:
The menu also works with targets to open links in specific frames or new windows.
Click
HERE to learn how.


COPY THIS CODE TO YOUR PAGE
Place this code between your  <HEAD></HEAD> tags on your page
<script>
<!--
function land(ref, target)
{
lowtarget=target.toLowerCase();
if (lowtarget=="_self") {window.location=loc;}
else {if (lowtarget=="_top") {top.location=loc;}
else {if (lowtarget=="_blank") {window.open(loc);}
else {if (lowtarget=="_parent") {parent.location=loc;}
else {parent.frames[target].location=loc;};
}}}
}
function jump(menu)
{
ref=menu.choice.options[menu.choice.selectedIndex].value;
splitc=ref.lastIndexOf("&");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc);
target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
}
//-->
</script>

NOTE:
If you add more than one menu to your page,
do not paste the above code more than once.

Place this part to the code in your <BODY> of your page, 
where you want the menu to appear:

Free JavaScripts provided
by Winfolinx.com


Back