Why is browser sniffing so bad? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T14:26:11Zhttp://stackoverflow.com/feeds/question/661213http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/661213/why-is-browser-sniffing-so-bad7Why is browser sniffing so bad?nickf2009-03-19T06:13:27Z2009-03-19T09:15:31Z
<p>You hear it all over the place: using javascript to sniff the user agent string to detect browser versions is a Very Bad Thing. The latest version of jQuery has now deprecated its <code>$.browser</code> object in place of <code>$.support</code>. But what should I do if there's a bug or problem which is only affecting IE and not the other browsers, and I'm not sure why?</p>
<p>In my case, some jQuery code makes a tooltip appear and disappear with an animation on mouseover and mouseout. In Internet Explorer, it looks awful, and jittery, with the tooltip div changing to a really large size before hiding, and if you run your mouse over a heap of items with the tip it really kills the browser. I have no idea what particular feature IE doesn't "support" that I should be testing against, so it's much easier to just sniff for IE and use a different method. What could/should I do instead?</p>
http://stackoverflow.com/questions/661213/why-is-browser-sniffing-so-bad/661225#6612252Answer by alex for Why is browser sniffing so bad?alex2009-03-19T06:19:16Z2009-03-19T06:48:24Z<p>Because if you get it wrong, you may accidentally cut off features to future browsers that support them.</p>
<p>I often find it useful. I <em>know</em> IE6 doesn't support alpha transparency, so I use browser sniffing to detect IE6 and hide/change elements that use them.</p>
<p>Also for running the mouse over quickly numerous times, try <a href="http://cherne.net/brian/resources/jquery.hoverIntent.html" rel="nofollow">HoverIntent</a>. It users setTimeout() I believe to only fire events when the mouse has been over an element for a brief period of time, saving cycles and avoiding queuing up of events and potentially freezing the browser.</p>
<p>Personally, I preferred jQuery with the browser version/type methods. It could be used to show a friendly hello message based on browser. Maybe jQuery deprecated it due to pressure that 'browser sniffing is evil'.</p>
<h2>Update</h2>
<p>This is what John Resig (creator of jQuery) says:</p>
<blockquote>
<p>We're keeping jQuery.browser for the
foreseeable future but we want
developers to move away from using it
- and the best way to get developers to do that is to become a good example
of proper development patterns.</p>
<p>To be clear: The points included in
$.support are mostly browser bug
specific (IE bugs that can't be tested
with normal object detection) - and
they don't encompass every possible
bug (only about a dozen or so). It's
expected that other developers will
add their own testing points in the
future.</p>
<p>Also, in that commit I forgot to land
the actual support.js file - it can be
found here:
<a href="http://dev.jquery.com/browser/trunk/jquery/src/support.js?rev=5986" rel="nofollow">http://dev.jquery.com/browser/trunk/jquery/src/support.js?rev=5986</a></p>
</blockquote>
<p>Source: <a href="http://www.reddit.com/r/programming/comments/7l2mr/jquery_removes_all_browser_sniffing/" rel="nofollow">http://www.reddit.com/r/programming/comments/7l2mr/jquery_removes_all_browser_sniffing/</a></p>
<p>Also see: <a href="http://dev.jquery.com/changeset/5985" rel="nofollow">http://dev.jquery.com/changeset/5985</a></p>
http://stackoverflow.com/questions/661213/why-is-browser-sniffing-so-bad/661239#6612396Answer by kkyy for Why is browser sniffing so bad?kkyy2009-03-19T06:33:21Z2009-03-19T09:04:31Z<p>Because just sniffing the user agent (which is what jquery does to populate the $.browser object) doesn't tell you the whole truth. </p>
<p>The user agent string can be easily changed in many browsers, so if you for example disable some features that don't work in IE from everybody who <em>seems</em> to be using IE, you might accidentally disable those features from some future browsers or users who just, for some reason (like for example to get around limitations based on browser sniffing), <em>pretend</em> to be using IE.</p>
<p>This might not seem too big of a problem, but it is still <strong>bad practice</strong>. </p>
<p>And yes, I am a IE sniffer too. I use</p>
<pre><code>$.browser.msie && document.all
</code></pre>
<p>just to be sure.</p>
http://stackoverflow.com/questions/661213/why-is-browser-sniffing-so-bad/661294#6612942Answer by bobince for Why is browser sniffing so bad?bobince2009-03-19T07:16:50Z2009-03-19T07:16:50Z<p>As well as the issues about browser-sniffing being inferior to capability-sniffing, handling navigator.userAgent as a string is in itself a very unreliable way of browser-sniffing.</p>
<p>It might work better if every browser stuck to the “Name/version” scheme of identifying themselves, but they don't. Most browsers claim to be “Mozilla/some.version” regardless of what they are. And that bit at the start is the only readily parsable part of the string; the rest is completely unstandardised. So scripts started searching the whole string for characterists substrings like “MSIE”. This is a disaster.</p>
<ul>
<li><p>Some browsers deliberately spoof each other, including substrings like “MSIE”, “Gecko” and “Safari” in their user agent strings when they're not those browsers, mostly to defeat ill-conceived string sniffers.</p></li>
<li><p>Some browsers allow the entire user agent string to be spoofed under user control.</p></li>
<li><p>Some browser variants aren't. For example IE Mobile is nothing at all like regular IE, but “MSIE” will still match it.</p></li>
<li><p>Some browsers allow add-ons to write extra tokens to the user agent string including arbitrary text. Just one registry change by a rogue add-on can make MSIE look like Firefox.</p></li>
<li><p>String matching is just inherently unreliable. For example a new browser called “CLUMSIERbrowser” would match MSIE.</p></li>
</ul>
http://stackoverflow.com/questions/661213/why-is-browser-sniffing-so-bad/661331#6613313Answer by olliej for Why is browser sniffing so bad?olliej2009-03-19T07:30:11Z2009-03-19T07:30:11Z<p>This first thing to note is that user agent sniffing does not just mean looking at <code>navigator.userAgent</code>, it is a general term to describe the large array of methods that people use to change behaviour based on what they believe the browser is.</p>
<p>So the problem is <em>not</em> looking at the user agent string, the problem is deciding what your site should do based on what you think the browser is. This means you may unavoidably limit or break your site in the future; For instance I have seen multiple canvas demos which block IE. They aren't checking to see whether canvas is supported, they are explicitly looking for IE, and if they see it they say IE is broken, this means that even if IE did eventually support canvas these sites still wouldn't work.</p>
<p>Rather than browser sniffing you should always attempt to detect the feature or bug you are interested in. The most common example of these tests is "object detection", eg. <code>document.createElement("canvas").getContext</code> is how the existence of canvas should be detected, and will correctly pick up canvas in any browser, even if current versions don't support it.</p>
http://stackoverflow.com/questions/661213/why-is-browser-sniffing-so-bad/661518#661518-1Answer by uriDium for Why is browser sniffing so bad?uriDium2009-03-19T09:15:31Z2009-03-19T09:15:31Z<p>In my humble opinion it is bad from the point of view that the creators of browsers should all code according to the specification and standard when it comes to rendering HTML. Why should the responsibility be placed on the developer of a website to test for different browsers and have different code for each browser?</p>