Slide up down with callback function
Description
The following code shows how to slide up form controls 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() {<!-- w w w.j a va 2 s . c o m-->
$("button").click(function() {
$(this).parent().slideUp("slow", function() {
alert("done");
});
});
});
</script>
</head>
<body>
<div>
Click me
<button>button</button>
</div>
</body>
</html>