Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if(theWindow.width() <= "756") {   
  2.     $("#main-nav ul").on("focus", "li", function(e){
  3.       e.preventDefault();  
  4.       $(this).find(">ul").slideDown();
  5.     }).on("focusout", function() {
  6.       $(".has-children").find("ul").slideUp();  
  7.       return false;
  8.     });
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement