The following code in my html file is working for me:
<!--[if lt IE 9 ]>
<p class="warning">This page uses newer browser features to display larger versions of the small images appearing on the right hand side of the page and to enhance the appearance of the page. If you are seeing the message, your browser doesn't support some or all of these features.</p>
<![endif]-->
I want to expand it to test for other browsers, but I can’t seem to find any documentation searching the web, probably because I don’t know what to search for. What is the name language used in the test if that is what it is or how would I find documentation for it? I also need to find the names used for other browsers.
Thanks
The [if lt IE9] is what is known as conditional comments.