How to determine if the browser is below IE8?

I hate IE, I just want to display an obsolete IE7 IE7 IE6 IE5.5 browser notification, etc. users on my site :)

I want to determine if the browser version is below IE8. I am open to Javascript, HTML, PHP, jQuery. How can i do this?

+4
source share
1 answer

You can use this markup in your HTML:

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

Link

+11
source

All Articles