DOCTYPE html> #box{ width:100px; height:100px; background-color: antiquewhite; position: relative; top:100px; left:300px; } $(document).ready(function(){ $("#btn").click(function(){ $("#box").animate({"margin-top":"-=100px"}) }) $("#btn2").click(function(){ $("#box").animate({"margin-top":"+=100px"}) }) $("#btn3").click(function(){ $("#box").animate({"margin-left":"-=100px"}) }) $("#btn4").click..