Internet Marketing by Carmen Maranon
main | blog | ezine | plug-n-go web biz | podcast | v-blog | members | ask carmen! | carmen approved | forumhelpdesk

Subscribe to My Weekly Marketing Journal...Name:E-mail:

Here are the Most Frequently Asked Questions I'm asked about Internet Marketing and Doing Business On The Internet... but with a cool twist. Not only will you read *my* solutions, but you will also have the read answers from other Internet marketers of all levels (newbies, intermediate & pro's), based on their personal experiences.

If you see a question that YOU have answers to, feel free to login and submit your answer! You must first register to post, but it's free and takes only a minute! If you would like to submit a question for consideration for this wiki, e-mail me with subject "AskCarmen Question."


Question: Simple Drop Down Navigation Menu

Filed under: Web Design & Develop

Answer:

Redirect your website visitors with this simple drop down navigation menu that will automagically take them to their selected page without having to click on submit!

Just put the following script where you’d like your menu to appear. Add as many links as you like! Be sure to include the full URL (ie. http://www.othersitelink.com) if you are linking to pages outside your own website.

<!— begin BUTTON code here –>
<SCRIPT LANGUAGE=”JavaScript”>
function AutoLink()
{
var number = document.FormAdvance.WebLink.selectedIndex;
location.href = document.FormAdvance.WebLink.options[number].value;
}
</SCRIPT>

<FORM NAME=”FormAdvance”>
<SELECT NAME=”WebLink” onChange=”AutoLink(this.form)” >
<OPTION SELECTED>Select from below!
<OPTION VALUE=”page1.html”> Page One
<OPTION VALUE=”page2.html”> Page Two
<OPTION VALUE=”http://www.othersitelink.com”> Page Three
</SELECT>
</FORM>
<!— end LINK code here –>

No Reader Submissions »

No comments yet.

RSS feed for reader answers for this post. | TrackBack URI

Leave a comment

You must be logged in to post a comment.