Hide and remove
Description
The following code shows how to hide and remove animation.
Example
<!-- w ww .j a v a2 s. c o m-->
<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() {
$("p").hide(2000, function() {
$(this).remove();
});
});
</script>
</head>
<body>
<p>Hello java2s.com</p>
</body>
</html>