Guest User

Untitled

a guest
Jul 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $(function() {
  2. $("#nav-primary ul.menu ul").css({ display: 'none' });
  3. $("#nav-primary ul.menu li").hover(function() {
  4. $(this).find('a').next('.sub-menu')
  5. .stop(true, true).delay(50).animate({ "height": "show", "opacity": "show" }, 200 );
  6. }, function(){
  7. $(this).find('a').next('.sub-menu')
  8. .stop(true, true).delay(50).animate({ "height": "hide", "opacity": "hide" }, 200 );
  9. });
  10.  
  11. });
Add Comment
Please, Sign In to add comment