I have this little script to toggle a contact form when a button is clicked :
$(document).ready(function(){ $('#button').click(function () { $('#form').toggle('slow'); }); });
All is working OK in Firefox, but in IE it seems like the toggle’s fade-in effect doesn’t gets 100% complete, and the text is being ‘frozen’ somewhere before a complete render, loosing all its fine resolution.
I read this topic but I don’t know exactly how to apply it to my issue.
Thanks for any help.
This may be what you’re looking for. Also, there is a functional demo of another similar method available online.: