<! - [if gte IE 8] & # 8594; not behaving as i expect
using the following code to prevent any version of IE prior to IE8 from loading multiple scripts.
The problem is that the script is still loading in IE7, and the conditional tags (which are inside the document title) are actually displayed and displayed on the page!
<!--[if gte IE 8]-->
<script src="<?php bloginfo('template_url'); ?>/scripts/voter.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_url'); ?>/scripts/hover.js" type="text/javascript"></script>
<!--[endif]-->
+3