Go To Top smooth scroll
$('a[href^="#"]').click(function() {
$('html, body').animate({
scrollTop: $("body").offset().top
}, 700);
});
Smooth scroll to an element ID on the page
$("#clickedElement").click(function() {
$('html, body').animate({
scrollTop: $("#elementID").offset().top
}, 700);
});

