Function for reposition the scroll page to any specified element position:
$('html, body').animate({ scrollTop: $("#elementId").offset().top }, 'slow');
Another example:
$(document).on("click","#btn_search",function(){
$('html, body').animate({ scrollTop: $(this).offset().top }, 'slow');
});