I want to put this comment into the :
<head>
<!--[if lt IE 8]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js">
</script>
<![endif]-->
<ui:insert name="faceletHeader"/>
</head>
开发者_如何转开发but comment will be removed from head. There is no setted skip comment value in config files. How to insert this comment?
Thanks
Use <h:outputText escape="false">
<h:outputText value="<!--[if lt IE 8]><script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script><![endif]-->" escape="false" />
精彩评论