I am trying to load an external js file using fanstatic. This is how I call the file to be loaded:
<!--[if lt IE 9]>
<%
h.html5shiv.need()
%>
<![endif]-->
The problem is when I check the source file, the js file is added inside the tag, but not within the IE if check.
<head>
<script type="text/javascript" src="html5shiv.js"></script>
<!--[if lt IE 9]>
<![endif]-->
</head>
Is there a way to force fanstatic to render this js file within the IE if check block?