Maybe it can be interesting to somebody else. How to hide elements in internet explorer, and maybe other browsers.
Step 1
Give to the element you want to hide with IE the following object ID “chrome”.
Give to the element you want to show only with IE the following ID “ie”.
Step 2
Add this javascript to the page:
if (navigator.appName == ‘Microsoft Internet Explorer’ || !!(navigator.userAgent.match(/Trident/) || navigator.userAgent.match(/rv:11/)) || (typeof $.browser !== “undefined” && $.browser.msie == 1))
{
document.getElementById(“chrome”).style.display = “none”;
document.getElementById(“ie”).style.display = “block”;
}
Step 3
Add this CSS to your page:
.ie { display: none; }
.chrome { display: block; }