Tagged: smooth scrolling using jQuery

How to make Smooth Scrolling using jquery

Performs a smooth page scroll to an anchor on the same page. $(document).ready(function() { function filterPath(string) { return string .replace(/^\//,”) .replace(/(index|default).[a-zA-Z]{3,4}$/,”) .replace(/\/$/,”); } var locationPath = filterPath(location.pathname); var scrollElem = scrollableElement(‘html’, ‘body’); $(‘a[href*=#]’).each(function() {...