How to move the page to the selected module by clicking on the read more in header style II ?
http://rwajda.org
Joachim
// smooth anchor scrolling
jQuery('a[href^="#"]').on('click', function (e) {
e.preventDefault();
if(this.hash !== '') {
var target = jQuery(this.hash);
jQuery('html, body').stop().animate({
'scrollTop': target.offset().top
}, 1000, 'swing', function () {
window.location.hash = target.selector;
});
}
});
jQuery(window).load(function() {