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