Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Previous CSS Snippet Jquery Smooth Scroll Help Re: Previous CSS Snippet Jquery Smooth Scroll Help

#103093
Taufik Nurrohman
Participant

Try to use the simple method:

$(function() {
$('a[href^="#"]').click(function() {
$('html,body').animate({scrollTop:$(this.hash).offset().top}, 1000);
return false;
});
});

Demo: http://codepen.io/pen/tovic/smooth-scroll-to-hash/1