$('html, body').animate(
{
scrollTop: $($(this).attr('href')).offset().top,
},
500,
'linear'
)
// replace #myID with your own element's CSS selector
$("html, body").animate({ scrollTop: $("#myID").scrollTop() }, 1000);
$('.scroll').click(function() {
$('body').animate({
scrollTop: eval($('#' + $(this).attr('target')).offset().top - 70)
}, 1000);
});