Conditional comments alternative to load jQuery
问题 Because jQuery 2+ doesn't support IE 8, I'll need to make use of a previous version: jQuery 1.9. Is there a way to include jQuery 1.9 when using IE <= 8 and jQuery 2+ when using IE > 8. I tried it with Conditional comments: <!--[if lt IE 9]><!--><script> .. googleapis jquery 1.9 .. </script><!--<![endif]--> <!--[if gte IE 9]><!--><script> .. googleapis jquery 2+ .. </script><!--<![endif]--> The problem is that It is not working and I found some information about it not being supported anymore