Is it not good to detect devices, operating systems and browsers Versions by User-agents?

293 views Asked by At

Is it not good to detect devices, operating systems and browsers Versions by User-agents?

Can it create any problem in caching like if we set expire headers and use wordpress W3 Total cache plugin

1

There are 1 answers

8
xzyfer On

Detecting browser version, especially via user agent strings, is a very bad idea. Amongst other things, this approach often fails with new versions of opera and chrome that are now in version 10+ because of the double digit version number.

It's better practice, and more informative, to instead use feature detection. Which will often often give you the information you're trying to determine.

Have a look at the Modernizr library by Paul Irish (of jQuery and Chrome) and others. Mix this with some of the techniques from the HTML5Boilerplate will generally suite all your needs, whilst being cross browser compatible.

You can also use CSS3 @media-queries for adjusting your site to mobile or small screen devices.