How can I detect IE 7 and IE 8 using jQuery.support properties?
Is it possible to detect the browser versions using jQuery.support or just those blah blah blah brows
I use this to check if browser is ie 8 or less
to change the ie version simply update the 8 to another ie verion
if (jQuery.browser.msie && jQuery.browser.version.substr(0,1) <= 8 ) { runIECode(); } else { runOther(); }