What's the best way to find out if a user is not using IE 7 or 8, Firefox, Safari, Chrome or Opera?

I want to show a message if they are not using one those browsers. In this case is it just easier to use browser sniffing?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The problem is, in the future when a new browser is released and becomes more modern than those listed, your message will show up, I assume saying something to the effect of 'If you're not using X, you can't utilize all the benefits of this application' in which case I would advise you to not do this for that exact reason.

You won't always be around to support the application, and possibly won't account for other perfectly modern and valid user agents that use one of those engines such as Webkit but do not identify themselves as such.

link|improve this answer
1  
+1: this is why $.support lists features, not versions – Michael Haren Oct 6 '09 at 2:28
thanks, that explained the situation better than I could :) – Colin Oct 6 '09 at 2:51
feedback

What is your reason for doing this? If its to tell users with older browsers that they need to upgrade, then pick some features that your site needs in order to run smoothly, test for them, and if the tests fail, display the message. This way you aren't locked into hard coding a list of compliant browsers and when new versions/alternate browsers come out, they won't be lumped in the "bad browser" pool.

link|improve this answer
Simply telling users that their IE6 sucks is not a bad thing.. – ThiefMaster Nov 23 '10 at 23:08
It is if you run any sort of professional website. – micmcg Nov 24 '10 at 1:10
feedback

Your Answer

 
or
required, but never shown

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