Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. var isMobile = { Android: function() {
  2. return navigator.userAgent.match(/Android/i);
  3. },
  4. BlackBerry: function() { return navigator.userAgent.match(/BlackBerry/i); },
  5. iOS: function() { return navigator.userAgent.match(/iPhone|iPod/i); },
  6. Opera: function() { return navigator.userAgent.match(/Opera Mini/i); },
  7. Windows: function() { return navigator.userAgent.match(/IEMobile/i) || navigator.userAgent.match(/WPDesktop/i); },
  8. any: function() { return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows()); }
  9. };
  10.  
  11. // usage: if ( isMobile.any() ) { // code }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement