<html>
<head>
<script src="jquery-latest.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btn1").click(function(){
$("div").animate({bottom:"100px"});
});
$("#btn2").click(function(){
$("div").animate({bottom:"0px"});
});
});
</script>
</head>
<body>
<button id="btn1">Animate Start</button>
<button id="btn2">Animate Stop</button>
<div style="bottom:0px;position:absolute;">This is Animate Effect.</div>
</body>
</html>