Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var showMainMenu = function(){
  2. $('.main-menu li').hover(function(){
  3. $(this).children('ul').stop(true, true).slideDown(500);
  4. },function(){
  5. $(this).children('ul').stop(true, true).delay(50).slideUp(500);
  6. });
  7. };
  8.  
  9. showMainMenu();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement