toggle("drop") renders jagged fonts in Internet Explorer
Putting the finishing touches on this drop in jquery script. Everything works across the board in all browsers except of course IE. I've narrowed it down to IE turning off font anti-aliasing with the .toggle("drop"). Fonts are smooth if I just use .fadeIn and .fadeOut. Is there some way to remove .toggle("drop") after it hits ? HELP!!
code snippet example:
jQuery(document).ready(function($) {
$("#toggle1").click(function () {
$("#toggle1div").toggle("drop", {direction:"right"}, 500);
$("#toggle2div").fadeOut("slow");
$("#toggle3div").fadeOut("slow");
});
});
styling snippet example:
#toggle1div { display:none; width:500px; position:absolute;margin-left:540px;top:208px;}