Slow fade in : fadeIn « jQuery « JavaScript DHTML






Slow fade in

 <html> <head> <script type="text/javascript" src="js/jquery-1.3.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("div").fadeIn("slow"); }); </script> </head> <body> <body> <div style="display:none;">Click me</div> </body> </html> 








Related examples in the same category

1.Fade in callback
2.Fast fade in
3.Fade in controlled by milliseconds
4.Header fade in
5.Fade in/out dialog
close