Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- USAGE
- if(isMobile){ do stuff for mobile}
- */
- var isMobile = function(){
- var MIN_SCREEN_WIDTH = 767;
- var $window = $(window);
- if($window.width() < MIN_SCREEN_WIDTH){
- return true;
- }else{
- return false;
- }
- };
- $(window).on('resize',function(){
- isMobile();
- });
Advertisement
Add Comment
Please, Sign In to add comment