|
Using conditional comments as described in the article will actually hide the nested Object from all browsers:
<!--[if !IE]>
<object></object>
<![endif]-->
Therefore, it should be constructed in the following way in order to hide the nested Object only from Internet Explorer. However, this method won't validate which means it can't be used in XHTML 2.0:
<![if !IE]>
<object></object>
<![endif]>
|