21282 Posts in 5730 Topics by 2601 members
General Questions
SilverStripe Forums » General Questions » Best way to include scripts with conditions like <!--[if lt IE 7 ]>..
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 327 Views |
-
Best way to include scripts with conditions like <!--[if lt IE 7 ]>..

27 October 2011 at 4:47pm
Hi,
What is the best way to include scripts such as:
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script>
<script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script>
<![endif]-->At the moment, it seems that the only way is to stick it in the template....
If I use Requirements::customScript, it wraps everything in <script></script> such as below:
<script type="text/javascript">
//<![CDATA[
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script>
<script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script>
<![endif]-->
//]]>
</script>Any ideas?
Thanks very much.
VWD
| 327 Views | ||
|
Page:
1
|
Go to Top |

