2

I would like to know, what is the best way to detect tablets and smartphone at the moment?

Plugin, user agent detection, touch screen detection etc.

Thanks

Romain
  • 1,733
  • 2
  • 17
  • 23

1 Answers1

6

Look at the top rated answer at this url:

What is the best way to detect a mobile device in jQuery?

Current methods from that thread:

var isMobile = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/); 

Jquery:

$.browser.device = (/android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.userAgent.toLowerCase()));
Community
  • 1
  • 1
Beardminator
  • 777
  • 7
  • 20