Fade in slow fast
Description
The following code shows how to fast fade in.
Example
<html>
<head>
<script
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!--from www. j a v a 2 s. c om-->
$("div").fadeIn("fast");
});
</script>
</head>
<body>
<div style="display: none;">Click me</div>
</body>
</html>