I've isolated the problem. Your original example was:
<!-- [if !IE] -->
<object></object>
<!-- <![endif] -->
Your follow-up example was (notice there is no space before the opening bracket of the if statement):
<!--[if !IE] -->
<object></object>
<!-- <![endif] -->
Your second example is indeed correct. Why do trhings have to be so confusing ;)
|