[jQuery] Superfish (IE cleartype bug)
I found that there is cleartype bug in superfish menu. I found the fix
I hope it helps.
showSuperfishUl : function(){
var o = sf.op,
sh = sf.c.shadowClass+'-off',
$ul = this.addClass(o.hoverClass)
.find('>ul:hidden').css('visibility','visible');
sf.IE7fix.call($ul);
o.onBeforeShow.call($ul);
$ul.animate(o.animation,o.speed,function()
{
///THis part is added
if ($.browser.msie)
{
this.style.removeAttribute('filter');
}
/////////////////////////////////////////
sf.IE7fix.call($ul); o.onShow.call($ul);
});
return this;
}