I did a long time site http://artpk.net/ , tried to make smooth effects when you hover on the drop-down menu.
$('li').has('ul').mouseover(function() { $(this).children('ul').show(); }).mouseout(function() { $(this).children('ul').hide(); });
If I put show (200) then when you hover the menu, it behaves inadequately, just show () is normal. Now I am also confronted with the fact that I need to make a smooth menu, but I still do not understand how to make it behave normally. Tell me please!