Results 1 to 2 of 2

Thread: Script in Dynamic Drive on my site - need help

  1. #1
    Join Date
    Dec 2009
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Script in Dynamic Drive on my site - need help

    1) Script Title:

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...pmenuindex.htm

    3) Describe problem:
    When I view the script on http://www.dynamicdrive.com/dynamici...pmenuindex.htm

    i can see the dropdown, but when i follow the exact steps in DD to use on my site, i cant view the drop down in IE, but in firefox, i can view it.

    My site - artnestceramics.com

    help appreciated.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    In your menucontents.js file:

    Code:
    var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''} //First menu variable. Make sure "anylinkmenu1" is a unique name!
    anylinkmenu1.items=[
    	["Table Chatters", "http://www.artnestceramics.com/gallery.html"],
    	["Earth Wear", "http://www.artnestceramics.com/gallery2.html"],
    	["Say No to Plastic", "http://www.artnestceramics.com/gallery3.html"],
    	["New", "http://www.artnestceramics.com/gallery4.html"],
    	//no comma following last entry!
    ]
    What's wrong with this picture?

    Anyways, IE is one of the few, if not the only browser that will not error correct this for you. It should be:

    Code:
    var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''} //First menu variable. Make sure "anylinkmenu1" is a unique name!
    anylinkmenu1.items=[
    	["Table Chatters", "http://www.artnestceramics.com/gallery.html"],
    	["Earth Wear", "http://www.artnestceramics.com/gallery2.html"],
    	["Say No to Plastic", "http://www.artnestceramics.com/gallery3.html"],
    	["New", "http://www.artnestceramics.com/gallery4.html"]	//no comma following last entry!
    ]
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •