Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. var isMobile = {
  2. Android: function() {
  3. return navigator.userAgent.match(/Android/i);
  4. },
  5. BlackBerry: function() {
  6. return navigator.userAgent.match(/BlackBerry/i);
  7. },
  8. iOS: function() {
  9. return navigator.userAgent.match(/iPhone|iPad|iPod/i);
  10. },
  11. Opera: function() {
  12. return navigator.userAgent.match(/Opera Mini/i);
  13. },
  14. Windows: function() {
  15. return navigator.userAgent.match(/IEMobile/i);
  16. },
  17. any: function() {
  18. return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
  19. }
  20. };
  21.  
  22. if( isMobile.any() ) console.log('Mobile');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement