The second line of my superfish menu disappears on mouse out of it's parent, or children. How do you get the second line to stay visible after the parent or children are clicked?
I would like the secondary menu to remain visible while the user is considering the sub pages. How do I get the second level of my horizontal menu to remain visible after the hover leaves?
There is lots of information about drop down menus, what about horizontal secondary navigation?
I've figured out how to get lots of things to happen, but I can't get the Current sub menu to remain after hover leaves (until another item gets hovered)
Here is a sample menu: 1st line: •ANIMALS •MINERALS •VEGETABLES 2nd line Animals: -dogs -cats -hamsters 2nd line Minerals: -diamonds -rubies -emeralds 2nd line Vegetables: -tomatos -eggplant -beans -carrots
I want the secondary menu to stay lit after it's parent is clicked, and be replaced by the secondary menu of another hovered parent (if nothing is clicked, it would return to selected menu.
I've poked around the css enough to suspect it is jquery that holds the answer. Any ideas?
I have an item at the end of a menu that when it is moused over, it makes a form visible underneath it. On some machines running Safari the form flashes on and of on hover, and disappears when the mouse leaves the trigger.
I can get it to happen in Firefox if I move the mouse super slow from the trigger word to the box. I've tried moving the log in box closer with css, and it still happens.
here is the javascript: $(document).ready(function(){ var both = $(".both"); var apMysfm = $("#mysfm_login");
$(function(){ apMysfm.hide(0,"#apMysfm"); both.hover( function () { apMysfm.show(0,"hover"); }, function () { apMysfm.hide(0,"hover"); } ); }); });
My testing worked well in my own "http" testing environment, but the production server I am moving to throws a warning that "page is calling out-side secure environment..." that is not in the same https.
My options are to self host jQuery or find another solution. I clicked "down load code", cut and pasted it into bb edit, saved it with the suggested file name to a directory on the production server, called the script in the head with a path copied from other <script> loading tags - but jQuery doesn't seem to be loading
This code attempts to have a blue box appear when red senses the mouse hovering. I can get the blue box to be visible, but when the mouse leaves to hover over the blue box, it disappears! Not good. How do I make it stay?
I want to put a form in the blue box, but at this test, the blue box disappears when the mouse leaves the red bar. I put in code to keep the blue box visible on mouse over, but it conflicts whit the second "red.hide" function, animating open and closed. I've tried to put an "if statement" in the second "red.hide" function, but results were inconclusive.
I want to have a drop down menu that reveals a menu position in the drop down, not a <li>link</li>. The module has a login / password / registration form. I tried to use a javascript to hide / un-hide but couldn't get the absolute positioning to work.