|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
drop down links menue
I'm new at this. First timer. I created a drop down menue on my website (http://www.glendalesgiftshop.com/St...i Patchwork.htm), for links to storefront pages and it doesnt work. Can someone please help me? This is what I pasted.
<form name="a294" > <select name="a969" size="1" style="background-color:#FFFFD7" onChange="displaydesc(document.a294.a969.selectedIndex)"> <option selected value="http://www.glendalesgiftshop.com/StoreFront/Safari Patchwok.htm">Safari Patchwork</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Anastasia.htm">Anastasia</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Divine Inspiration.htm">Divine Inspiration</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Metal Works.htm">Metal Works</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Ocean Acrobatics.htm">Ocean Acrobatics</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Photo Frames.htm">Photo Frames</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Mandarin Ivory.htm">Mandarin Ivory</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Japanese Dolls.htm">Japanese Dolls</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Candles & Candle Holders.htm">Candles</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Oils & Incense.htm">Oils & Incense</option> <option value="http://www.glendalesgiftshop.com/StoreFront/African Legacy.htm">African Legacy</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Musical Boxes.htm">Musical Boxes</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Glass Creations.htm">Glass Creations</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fashion Watches.htm">Fashion Watches</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Knives & Swords.htm">Knives & Swords</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Digimon Pals.htm">Digimon Pals</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Patriotic Decor.htm">Patriotic Decor</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Work of Arts.htm">Work of Arts</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Patchwork Decor.htm">Patchwork Decor</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Assortments.htm">Assortments</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Magnets & MemoHolders.htm">Magnets</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Wooden Wonders.htm">Wooden Wonders</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Tribal Candle Holders.htm">Tribal Candle Hldrs</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Shabby Elegance.htm">Shabby Elegance</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Wooden Clocks.htm">Wooden Clocks</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Metal Sculptures.htm">Metal Sculptures</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Applause Direct.htm">Applause Direct</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Lord of the Rings.htm">Lord of the Rings</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Cow Collectibles.htm">Cows</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Elephant Collectibles.htm">Elephants</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fine Jewelry_Sapphires.htm">Sapphires</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fine Jewelry_Pearls.htm">Pearls</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fine Jewelry_Diamonds.htm">Diamonds</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fine Jewelry_Gold.htm">Gold</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fine Jewelry_Sterling.htm">Sterling</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fun Jewelry.htm">Fun Jewelry</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fine Jewelry_Fashion Statments.htm">Fashion Statments</option> <option value="http://www.glendalesgiftshop.com/StoreFront/Fimo Jewelry.htm">Fimo Jewelry</option> <option value="http://www.glendalesgiftshop.com/New Arrivals/NewArrivals.htm">New Arrivals</option> </select> <input type="button" value="Go"_ onClick="jumptolink(document.getElementById(http://www.glendalesgiftshop.com/St...i Patchwork.htm).value"/> </form>[/code] <span id="descriptions" align="left" style="font:italic 13px Arial"> </span> </form> <script> /*********************************************** * Drop down menu w/ description- © Dynamic Drive (www.dynamicdrive.com) * This notice must stay intact for use * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ //CUSTOMIZE TEXT DESCRIPTIONS FOR LINKS ABOVE var textdisplay=new Array() textdisplay[0]="Comprehensive JavaScript tutorials and over 400+ free scripts" textdisplay[1]="Direct link to hundreds of free Java applets online!" textdisplay[2]="Up to date news on the technology front" textdisplay[3]="News.com- The #1 technology News site." textdisplay[4]="Web Coding and development forums" function jumptolink(what){ var selectedopt=document.a294.a969.options[what] if (document.getElementById && selectedopt.getAttribute("target")=="newwin") window.open(selectedopt.value) else window.location=selectedopt.value } function displaydesc(which){ if (document.all) descriptions.innerHTML=textdisplay[which] else if (document.getElementById) document.getElementById("descriptions").innerHTML=textdisplay[which] } displaydesc(document.a294.a969.selectedIndex) document.a294.a969.options[0].selected=true </script> Last edited by glennodom : July 20th, 2003 at 04:19 PM. |
|
#2
|
||||
|
||||
|
Try:
http://software.xfx.net/utilities/dmbuilder/ http://www.softcomplex.com/cgi-bin/...age&action=view since I don't know what the problem is I suggest you make the menu with one of those sites, I suggest the tigra one. You make the menu and then download the file, then put it on your site, its really easy. I hope I was of assistance to you. |
![]() |
| Viewing: Dev Shed Forums > Other > Beginner Programming > drop down links menue |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|