Hello.
I want to use Simplicity template as onepage. I have links to sections in menu.
How can I add animated scroll to sections?
// smooth anchor scrolling
jQuery('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
target = jQuery(target);
if(this.hash !== '') {
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top
}, 1000, 'swing', function () {
window.location.hash = target.selector;
});
}
});