jQuery(function () { jQuery(window).scroll(function () { if (jQuery(this).scrollTop() > 300) { jQuery('#back-top').fadeIn(); } else { code example
Example 1: scroll to element jquery
$('html, body').animate({
scrollTop: $("#grepperRocks").offset().top
});
Example 2: jquery scroll to element
$("#button").click(function() {
$([document.documentElement, document.body]).animate({
scrollTop: $("#elementtoScrollToID").offset().top
}, 2000);
});