URL Jumper

Do you hate having to clog up or redisign your page each time you add a new URL link to another site or another one of your web pages ? The URL Jumper fixes that problem by organizing your links in a selection box where the user would just click on one and hit Go.

How it works : Your html file uses the <SELECT> tag to display the titles of pages which will be selected, and the actual URL to each page will be embedded as part of the <OPTION> tag. The script then takes the user's selection and send the browser off to the designated URL.

Sample code:

<FORM METHOD=POST ACTION="http://technotrade.com/jump.cgi" SIZE=5>
<SELECT NAME="url" SIZE=15>
<OPTION SELECTED VALUE="http://www.yahoo.com">Yahoo
<OPTION VALUE="http://www.infoseek.com">Infoseek
<OPTION VALUE="http://www.netscape.com">Netscape
<OPTION VALUE="http://www.searchsd.com">Search San Diego
<OPTION VALUE="http://www.search.com">C-Net's Search.com
</SELECT>
<FORM>


Following is a sample of the URL Jumper in action, you will see different examples of changing the size of the <SELECT> field.



Back to the ..