Fast fade in : fadeIn « jQuery « JavaScript DHTML
- JavaScript DHTML
- jQuery
- fadeIn
Fast 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("fast");
});
</script>
</head>
<body>
<body>
<div style="display:none;">Click me</div>
</body>
</html>
Related examples in the same category