Javascript examples for jQuery Method and Property:fadeOut
Hide page background by fade in body
<html> <head></head> <body> <style> body{//from www. jav a2 s . c o m background: green; display: none; } </style> <div id="lotsandlotsofstuff"> [...] </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> <script> $('document').ready(function(){ $('body').fadeIn(); }); </script> </body> </html>