Advertisement
mstranieri

Detect mobile Device

Nov 25th, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function detectmob() {
  2.    if(window.innerWidth <= 800 && window.innerHeight <= 600) {
  3.      return true;
  4.    } else {
  5.      return false;
  6.    }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement