vote up 8 vote down star
1

How should browser detection be done now that jQuery 1.3 has deprecated (and I'm assuming removed in a future version) $.browser.msie and similar?

I have used this a lot for determining which browser we are in for CSS fixes for pretty much every browser, such as:

$.browser.opera
$.browser.safari
$.browser.mozilla

... well I think that's all of them :)

The places where I use it, I'm not sure what browser issue is causing the problem, because a lot of times I'm just trying to fix a 1 px difference in a browser.

Edit: With the new jQuery functionality, there is no way to determine if you are in IE6 or IE7. How should one determine this now?

flag

70% accept rate
I think the question is why do you need to determine between IE6 and IE7? – Ray Booysen Jan 18 at 22:49
1  
Because the site works in all browsers except IE with just a bit of tweaking for all IE browsers, but in IE6, it completely breaks with things positioned in completely the wrong spots. I'm using a valid doc type and all the rest. – Darryl Hein Jan 18 at 23:13
1  
To be brutally honest: you're doing something wrong if it breaks that badly in IE6. – cletus Jan 18 at 23:34
Surely this is a CSS problem not a JS one. And come to that why can't you just, y'know, write some JS to do this? – annakata Feb 24 at 9:33
4  
For what it's worth, there are some display bugs in ie6 that one has to compensate for that don't happen in any other browser, such as positioning a div over a select box. IE6 detection is useful for putting in something like an iframe hack to hide the select boxes. – Crad May 13 at 21:33

12 Answers

vote up 5 vote down check

I was facing something similar, there's no $.support.png (p.ej.), so I need to use the $.browser.version yet, maybe we can just keep asking for more $.support.XXXX properties, as much as needed.

link|flag
1  
I think that's the correct way. It's not important if you're running IE or Firefox - the important questions are "Does it support transparent PNGs?" or "Is it's Box model broken?" – Michael Stum Oct 9 at 16:35
vote up 14 vote down

Yes, the browser detection has been deprecated, but the deprecated properties probably won't be removed from jQuery anytime soon. And when they will be removed, if you still absolutely need to do browser detection, you can add the same functionality easily with a small, simple plugin.

So, my answer is to do nothing about it, for now :)

edit: I'll even provide you with a plugin to use in the future (not tested, copy-pasted from jquery source):

(function($) {
    var userAgent = navigator.userAgent.toLowerCase();

    $.browser = {
        version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [0,'0'])[1],
        safari: /webkit/.test( userAgent ),
        opera: /opera/.test( userAgent ),
        msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
        mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
    };

})(jQuery);
link|flag
vote up 6 vote down

.browser has been deprecated in favour of .support. More information over here: jquery.support What this essentially means is that instead of using browser sniffing, jquery now does feature support detection and allows for much finer grained control over what the browser can do.

From the description:

Added in jQuery 1.3 A collection of properties that represent the presence of different browser features or bugs.

jQuery comes with a number of properties included, you should feel free to add your own. Many of these properties are rather low-level so it's doubtful that they'll be useful in general day-to-day development, but mostly used by plugin and core developers.

The values of all the support properties are determined using feature detection (and do not use any form of browser sniffing)

link|flag
vote up 3 vote down

jQuery 1.3 has replaced browser testing.

Frankly I'm surprised how often Web developers are concerned about what browser their site is running in. In 10+ years of Web development I can think of a handful of cases where I've cared let alone bothered to do anything different. The most common reason has been that the named font sizes differ significantly between Firefox and IE (font-size: large is a lot larger in IE than FF) so I have used an IEfix.css file to correct that.

Perhaps you should look at What is better: CSS hacks or browser detection? for a more thorough discussion on the topic.

The long and short of it is you should care if a feature is supported or not, not which browser it is.

It's hard to say anything more without knowing why you care if it's IE because you'll probably find there's a much better solution to doing what you're doing.

link|flag
Yes, I know this, but my question is what do I do now? – Darryl Hein Jan 18 at 21:52
You check for the features you need not th ename of the browser. – cletus Jan 18 at 23:00
All IE browsers are the same and all other browsers are the same, although things appear differently. – Darryl Hein Jan 18 at 23:14
2  
Wow, I can't believe how many people have decided not to support IE6. Of all of my corporate clients, only 2 (out of 10) have moved to IE7 and that's 2 years after IE7's release. I hate it, but it's reality, corporate clients don't trust IE7 yet. – Darryl Hein Jan 19 at 3:31
2  
I can understand not trusting IE7. I can't understand it in the context of trusting IE6 however. :) – cletus Jan 19 at 4:16
show 1 more comment
vote up 2 vote down

feature support sounds a good idea, BUT it will only work as is intended when it supports all possible "bugs". Like the first commenter, there is no $support.png, or a $support.stepping, or a $support.peekaboo, or a, oh, the list goes on. The problem with this is that some code to make one browser compliant will inevitable end up being executed by a browser that does not need it.

link|flag
vote up 2 vote down

I say reverse engineer it from jQuery 1.2's codebase.

See this section of the code:

jQuery.browser = {
    version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [])[1],
    safari: /webkit/.test( userAgent ),
   opera: /opera/.test( userAgent ),
  msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
  mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
};

Respect the GPL and MIT licenses and learn from the code. Don't copy and paste.

Or specifically for smelling out IE6. You could do:

function IsThisBrowserIE6() {
    return ((window.XMLHttpRequest == undefined) && (ActiveXObject != undefined))
}
link|flag
vote up 1 vote down

Try the GeckoFix script at http://code.labor8.eu/geckoFix , it detects the Firefox lower than 3.0 so you can customize it how you want (i.e. by adding more rules to it like detecting Firefox 2, Firefox 3, Opera and Safari). I think it could be what you're looking for. To check user agent just type in your address bar javascript:alert(navigator.userAgent) and find some specific characters you'll need to type in script.

link|flag
vote up 0 vote down

Tyndall, can a function like that be done for IE7? IsThisBrowserIE7()?

link|flag
vote up 0 vote down

@Nate - I think to answer your question, just change the first part to != undefined, and that should do it. I didn't test that, but that's my hunch.

link|flag
vote up 0 vote down

I've got a piece of Javascript that runs fine in Mozilla and Webkit browsers, as well as IE8. However, in 6 and 7 it breaks. This has nothing to do with the CSS, nor poor Javascript, but the crappy supports of IE<8.

I can see where people are coming from about checking for "features" as opposed to browser sniffing, however, the features that sniffing is available for are not relevant to the breaking code, so then what is the difference between browser sniffing and feature sniffing until ALL features are available in the $.support object?

link|flag
1  
What is this code exactly? – cletus May 14 at 17:13
vote up 0 vote down
function browserLessThanIE7(){
   return (/MSIE ((5\\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32");
}

Could also work fine... This one checks for version 5, 5.5 and 6.

@Nate: change (5\.5)|6 into 7 and it checks for version 7.

link|flag
vote up 0 vote down

Browser detection isn't deprecated in jQuery. Doc page for jQuery.browser, which states:

We recommend against using this property, please try to use feature detection instead (see jQuery.support).

Deprecation means "slated for future removal." This advice about sniffing for capabilities rather than user agents is just good general advice, and not specific to jQuery. All they're saying is they're making it easier to do the right thing.

There's always going to be a need for user agent sniffing however. Unless jQuery.support is updated daily by an army of developers, there's just no way it can keep up with every bug and every feature in every minor point version of every browser.

I think the confusion about this arose from the fact that, internally, jQuery no longer does browser sniffing. But the utility API jQuery.browser will continue to exist.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.