|
Hi There, I think this plugin is fantastic, it was exactly what I was looking for.I have only one small remark, and that is, that when clicking through the form fields, and the opacity is restored back to 100% in Internet Explorer, the text looks fuzzy. This has of course got to do with the way IE renders the text (poorly). I propose the following fix:(Line 63)base.setOpacity = function(opacity){base.$label.stop().animate({ opacity: opacity }, base.options.fadeDuration,'swing',function(){if (opacity==1) {$(this).css("filter","");}});base.showing = (opacity > 0.0);};I have added the callback method to the animate call so that we can remove the filter property from the CSS when we're restoring the opacity. |