Slide up down
Description
The following code shows how to slide up an element.
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 . jav a 2 s .c om-->
$("p").dblclick(function() {
$(this).slideUp();
$(this).slideDown();
});
});
</script>
</head>
<body>
<p>java2s .com</p>
<p>j ava2s.com</p>
</body>
</html>