Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: PopIt Menu

  1. #1
    Join Date
    Nov 2005
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default PopIt Menu

    Hello.

    Is there a limit to how many items you can have in a menu set? I have one menu set that needs to have 10 links in it. I can get it to accept 9, but not 10. When I put the 10th link in, then all it shows is that last link.

    Any help is appreciated.

    Kathy

  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

    Most likely you have a syntax error that makes it think you are telling it to only use that link. Can't know for sure without seeing it:

    Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format for asking a question.
    PLEASE: Include the URL to your problematic webpage that you want help with.
    - John
    ________________________

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

  3. #3
    Join Date
    Nov 2005
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry about not posting properly. You were right. I was missing some "+" on the menu items. Thanks for the help.

    Kathy

  4. #4
    Join Date
    Nov 2005
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    By the way, what happens if someone is using a browser that doesn't support his script? Where do they go if they click on menu link that show on the page?

  5. #5
    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

    "Doesn't support" could mean a few different things. Fortunately, most browsers will support it if javascript is enabled, so the question becomes one more of "What happens if a user doesn't have javascript enabled?". In that case (as configured in the demo) not much will happen. That is because the links without javascript are set to href="#", which is HTML for "reload this page at the top". So that is what will happen. You can and should configure those links to point to a page with conventional links to the content. This could be a page you already have on your site or one that you can make just for this purpose. Here is an example (modified from the demo):

    Code:
    <a href="webmaster_menu.htm" onMouseover="showmenu(event,linkset[0])" onMouseout="delayhidemenu()">Webmaster Links</a><br>
    <a href="news_menu.htm" onMouseover="showmenu(event,linkset[1], '180px')" onMouseout="delayhidemenu()">News sites</a>
    Those red links were just "#" in the original demo. Now they point to alternate menu pages, on these pages can be conventional links for those same items that would have popped up if the user had javascript enabled. If the user has javascript enabled, these red links will not fire but, simply reveal the pop it menu onmouseover.
    - John
    ________________________

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

  6. #6
    Join Date
    Nov 2005
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you John.

    Kathy

  7. #7
    Join Date
    Nov 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Did you get it to work. I had this same question earlier today and can't get a response *sigh*

    I'm not missing any + that I can see. Mine still doesn't work.

    In case anyone sees this reply, my post is a few doors down on the list and includes the code in question. *sobbing* *begging* *offering chocolate*

    Marjorie

  8. #8
    Join Date
    Nov 2005
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    HELP.

    All my links in the popit menu work except the very first one I defined under SHOP ONLINE. I keep getting this as the link:

    http://www.url.com/http://www.url.com

    Here is the page and it is the "View All Products" link under SHOP ONLINE that won't work. Any help is appreciated.

    http://www.wildbonbon.com/bulkretail.html

    Kathy

  9. #9
    Join Date
    Nov 2005
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry, here is the link to the script I am using

    http://www.dynamicdrive.com/dynamicindex1/popit.htm

  10. #10
    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

    Typo:

    Code:
    linkset[0]='<a href="http//:www.wildbonbon.com/wbbproducts.html">View All Products</a>'
    should be:

    Code:
    linkset[0]='<a href="http://www.wildbonbon.com/wbbproducts.html">View All Products</a>'
    - 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
  •