Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Animation call back

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){             $("div").animate({height:200, width:400, opacity: .5}, 1000, "linear", function(){alert("all done");} );         });     </script>   <style>   div {      background-color:red;      width:500px;      height:500px;      border:1px solid black;   }   </style>        </head>   <body>     <body>           <div>Click me</div>     </body> </html>