Guest User

Untitled

a guest
May 21st, 2013
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2.     USAGE
  3.  
  4.     if(isMobile){ do stuff for mobile}
  5.  
  6. */
  7.  
  8.  
  9. var isMobile = function(){
  10.     var MIN_SCREEN_WIDTH = 767;
  11.     var $window = $(window);
  12.  
  13.     if($window.width() < MIN_SCREEN_WIDTH){
  14.         return true;
  15.     }else{
  16.         return false;
  17.     }
  18. };
  19.  
  20.  
  21.  
  22.  
  23.  
  24. $(window).on('resize',function(){
  25.     isMobile();
  26. });
Advertisement
Add Comment
Please, Sign In to add comment