$(function(){ $("#go").click(function (){ var id=this.id; $(this).animate(function(){ $('html, body').animate({ scrollTop: $("#"+id+'_new').offset().top; }, 2000); }); }); });