move div from top to bottom
HTML
<!--move div from top to bottom -->
<div id="move">
</div>
CSS
#move{
position:absolute;
height:60px;
width:60px;
background-color:orange;
}
JavaScript
$( "#move" ).animate({ "top": "+=300px" }, 5000 );