Wiggy Menu Action

  • greyson72
    Inactive member
  • Topic Author
  • New Member
  • New Member
More
13 years 4 months ago #4125 by greyson72
Wiggy Menu Action was created by greyson72
I have the Hot Skies template located at www.antelopeweb.com/~abupaul

I am having real trouble with the menu. it is very sensitive and sometimes when you mouse over an item on the top menu the dropdown will "rubberband" open and shut 3 or 4 times until you move the mouse out of the mouseover area.

Any help will be appreciated

Please Log in to join the conversation.

More
13 years 4 months ago #4129 by ivan.milic
Replied by ivan.milic on topic Re: Wiggy Menu Action
Try this:

www.antelopeweb.com/~abupaul/templates/hot_skies/js/menu.js

rewrite source with this source:

var _AnimatedMenuItem = null;
function mainmenu(){
$(" #nav ul ").css({display: "none"}); // Opera Fix

$(" #nav li").hover(function(){
if (_AnimatedMenuItem != null) {
_AnimatedMenuItem.stop(true, true);
}
$(this).find('ul:first').show(400);
_AnimatedMenuItem = $(this).find('ul:first');
},function(){
if (_AnimatedMenuItem != null) {
_AnimatedMenuItem.stop(true, true);
}
$(this).find('ul:first').hide(400);
_AnimatedMenuItem = $(this).find('ul:first');
});
}

$(document).ready(function(){
mainmenu();
});

Please Log in to join the conversation.

  • greyson72
    Inactive member
  • Topic Author
  • New Member
  • New Member
More
13 years 4 months ago #4134 by greyson72
Replied by greyson72 on topic Re: Wiggy Menu Action
that did the trick, thanks!

Please Log in to join the conversation.

Time to create page: 0.360 seconds
Powered by Kunena Forum