See code below:
in IE7, when I do this, the font is all blurry.  If I use fadeIn(), it looks
blurry until the very end and then fixes itself.
Firefox looks right the whole time.  Am I doing somthing wrong?

Glen


<div class="mktReadOnly" style="font: bold 24px 'trebuchet ms'"  >
 This is the Name
</div>
<div class="mktEditable" style="display:none;">
 <input type="text" value="This is the name in hidden text field" />
/div>

<br />
<a href="#" class="flipflopButton">Edit</a>

<script>

$("a.flipflopButton").toggle(function(){
   $(".mktReadOnly").hide();
   $(".mktEditable").fadeIn();
},function(){
   $(".mktEditable").hide();
   $(".mktReadOnly").fadeTo("slow", 0.5);
});

</script>
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to