You can target older Internet Explorer versions (<= 9) through classes on the <html> element...
<!--[if lt IE 7]>  <html class="ie ie6 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 7]>     <html class="ie ie7 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 8]>     <html class="ie ie8 lte9 lte8"> <![endif]-->
<!--[if IE 9]>     <html class="ie ie9 lte9"> <![endif]-->
<!--[if gt IE 9]>  <html> <![endif]-->
<!--[if !IE]><!--> <html>             <!--<![endif]-->
... and then check if <html> has the class .lt9 or .lt8 — whatever version of Internet Explorer you are targeting:
if($('html').hasClass('lte9')) { /* LTE IE9 */ }
However, I would suggest using Modernizr feature detection instead of checking for a specific browser.