Hi everyody.
I have some problem with animation in menu.
Take a look here:
http://blog.wrocweb.com/I wanted to leave highlighted menu element when I go to submenu, but when I move my mouse beyond the menu then it does not back on its place.
Can somebody help me ?
I'm posting here my jquery code:
- jQuery('ul.menu li a, ul.menu li.hover a').hover(
function() {
jQuery(this).animate({'padding-right':'100px'});
},
function() {
jQuery(this).animate({'padding-right':'20px'}).stop();
}
);
jQuery('ul.menu .submenu li a').hover(function() {
jQuery(this).stop();
});
Thanks!
Tom