Thanks to, @frazelledazzell
Author Archives: Mark Reyes
Check MSIE 7, 8, 9 using JavaScript
var isIE9 = navigator.appVersion.indexOf("MSIE 9.")!=-1;
var isIE8 = navigator.appVersion.indexOf("MSIE 8.")!=-1;
var isIE7 = navigator.appVersion.indexOf("MSIE 7.")!=-1;
Thanks to, jQuery4u.
nth:child CSS Selectors
CSS3 and IE7/8 versions of nth:child CSS selections,
/* standard nth */
ul.menu li:nth-child(3)
{
/* styles for the 3rd LI */
}
/* IE nth */
ul.menu>li + li + li
Thanks to, Michael Barrett @ Abouthalf.com