Help create a hover in the mega menu, when you hover over a position, a list appears and disappears immediately, without the possibility of pointing at it. Help fix it on jquery .
Here's what I got:
$('.mega-mnu ul li').hover(function () { var mega_inner = $(this).find('ul'); mega_inner.css({'display':'block'}); }, function () { var mega_inner = $(this).find('ul'); mega_inner.css({'display':'none'}); } );