-
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
-
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.
-
Sorry about not posting properly. You were right. I was missing some "+" on the menu items. Thanks for the help.
Kathy
-
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?
-
"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.
-
-
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
-
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
-
-
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>'
-
Good grief. Sometimes it is the simplest thing staring you right in the face.
Thank you John.
Kathy