Fade in with callback function

Description

The following code shows how to fade an element in animation.

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() {<!--   ww  w  .  j  a  va  2 s .  c o m-->
    $("div").fadeIn(1000, function() {
      alert("done");
    });
  });
</script>
</head>
<body>
  <div style="display: none;">Click me</div>
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities