I've tried:
<!--[if lt IE 6.0]>
HTML TO HIDE FROM IE6
<![endif]-->
but unfortunately the stuff gets hidden from firefox too. Anyone have methods that work? I want the stuff to be hidden from only IE6
Thanks
|
|
I've tried:
but unfortunately the stuff gets hidden from firefox too. Anyone have methods that work? I want the stuff to be hidden from only IE6 Thanks
|
||
|
|
|
|
You can actually use conditional comments to hide things from Internet Explorer contrary to the answer from deceze. These types of conditional comments are called 'Downlevel Reveal Conditional Comments'. (These are different from comments used to show things to internet explorer which are more common, those are known as 'Downlevel hidden conditional comments')
However if you already using a downlevel hidden conditional comment to show a IE6 stylesheet just to IE6 then you might be best off just hiding it with CSS. I hope this helps. |
||||||
|
|
|
A good way would be to sniff the user agent server-side and not print the HTML in question, if that is an option for you. Your best bet though is to conditionally include some CSS that sets
You can even combine these two methods, in case CSS is disabled (unlikely, but hey, being paranoid can pay off ;)). |
||||
|
|
|
Little confused with your question but Here is the javascript code to detect the version of Internet Explorer. Taken from Detecting Internet Explorer More Effectively. Add the HTML contents which are to be hidden from IE6 in a div and hide it using the function below.
|
||
|
|
|
|
Try
in your CSS, using |
||
|
|
|
|
Conditional comments shouldn't affect Firefox at all as they are commented out and the browser should ignore it. I would check that your Firefox stylesheet is correct and embeded correctly something like this:
|
||
|
|
|
|
EditAfter reading Natalie Downe's answer, I'd do it like this:
You can use negated conditional comments to hide things from IE but not from other browsers.
It renders some invalid markup, but it works. Reference: http://msdn.microsoft.com/en-us/library/ms537512%28VS.85%29.aspx |
|||
|
|
|
|
bravo ionut.. merge si pentru mine :) |
||
|
|