Akos
Akos

Reputation: 2007

How to detect if browser is below IE8?

I hate IE, I only want to display an out-of-date browser notification to IE8 IE7 IE6 IE5.5 etc. users on my site :)

I want to detect if browser version number is below IE8. I am open to Javascript, HTML, PHP, jQuery. How could I do this?

Upvotes: 4

Views: 3789

Answers (1)

trojanfoe
trojanfoe

Reputation: 122458

You can use this mark-up in your HTML:

<!--[if lt IE 8]>
<p>You aren't using a recent version of Internet Explorer.</p>
<![endif]-->

Reference.

Upvotes: 11

Related Questions