IE allows you to do detect which version of IE is running based on thier browsers comment conditions (I actually don't know if that is what they are called, someone can correct me if it is not).

<! --[if lt IE 7]> css code here.. <! [endif] -->

Does anyone know if other browsers have followed thier example to determine what version of thier browser is being used?

<! --[if FF]> css code here.. <! [endif] -->
<! --[if O]> css code here.. <! [endif] -->
link|improve this question

1  
What are you truing to achieve that requires differentiation between browsers ? – Gaby aka G. Petrioli Jan 27 '11 at 21:01
I was wanting to use it for statistics. Nothing to try and hack functionality just pure data capture. – John Jan 28 '11 at 0:30
@John: Your web server can do this. – reisio Jan 28 '11 at 1:22
@reisio Can you point me in a good direction? – John Jan 28 '11 at 3:52
Web servers typically log all requests, including user agent string. For some there is 3rd party software for visualizing it all, for example AWStats, etc. (en.wikipedia.org/wiki/AWStats#Alternatives). – reisio Jan 28 '11 at 4:06
show 1 more comment
feedback

4 Answers

up vote 3 down vote accepted

In general, you shouldn't need to do this with modern browsers (FF3.6, Chrome, IE9, Safari). Also, if you target a hack at a browser that is still changing, you run the risk of the hack still working but the problem it solved being fixed, and then your fix breaks.

Hacks or conditional comments should only be aimed at old browsers (IE6 and IE7 are the main targets).

link|improve this answer
feedback

Nope,

conditional comments are IE only.

link|improve this answer
feedback

No, conditional comments are only supported by Internet Explroer and the list of available conditions is quite astounding.

Note that you can use conditional comments to hide things from IE browsers in general:

<!--[if !IE]><!-->
<b>This HTML is not seen by IE</b>
<!--<![endif]-->

Ugly, ugly, though...

link|improve this answer
Many web developers are surprised to see that conditional comments exist. In many large companies, however, deployment of new browsers is glacial. I know a stockbroker working for a bank who is required to use IE6. Conditional comments make it possible for IT departments to support multiple versions of IE with all their quirks. A hack, yes, but not going away anytime soon. – Eric Giguere Jan 27 '11 at 23:11
feedback

Not that I'm aware of. Are you trying to serve up different CSS or a combo of CSS and JS/other?

Perhaps using the vendor prefixes like -moz-, -webkit- and -o- before CSS declarations might work for you in that case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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