In my site I have an IE HTML conditional like this :
<!--[if lte IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
..... the rest code of the html page
when I run my web page in IE 8 I only want the code inside the condition to be displayed and I dont want to display the rest of the web page.
How can I do that ?
Edit 1
When I tried this :
<!--[if gt IE 8]>
...My code
<![endif]-->
It didnt work when I run my web page on firefox
or chrome
.