My JavaScript need only to target modern browsers (IE9, FF, Chrome ect.) and excluding IE8 and older. I have been experimenting but I am not sure if it works (don't have proper IE testing facilities).
I was thinking about adding a script for newer than IE8 and then again for all non IE:
<!--[if gt IE 8)]><script src="sites/all/themes/customtheme/js/custom.js" type="text/javascript" charset="utf-8"></script><![endif]-->
<!--[if !IE]><!--><script src="sites/all/themes/customtheme/js/custom.js" type="text/javascript" charset="utf-8"></script><!--<![endif]-->
Anybody have any experience or code snippet for adding to script to modern browsers and exclude IE8 and older?