How to make browser fade after submitting a form
For some reason, my browser gets really ugly when I submit it (I mean divs and label stretc开发者_StackOverflow社区h across the screen, buttons lose there images and also get stretched out. It is very ugly. How can I make the browser kind of blur or fade when submitting a form using jquery, HTML or any other technology.
To fade out the contents of the screen before submitting try
$("html, body").fadeOut(1000, function(){ $("#formId").submit(); });
精彩评论