$(document).ready(function(){
$("button").click(function(){
$("div").animate({left: '250px'});
});
<button>Почати анімацію</button>
<div style="background:#98bf21;height:100px;width:100px;position:absolute;"></div>