Skip to content

Instantly share code, notes, and snippets.

@ShahinAhmed7
Created August 6, 2017 15:32
Show Gist options
  • Save ShahinAhmed7/aa6957a57e47f2604659866f47947da4 to your computer and use it in GitHub Desktop.
Save ShahinAhmed7/aa6957a57e47f2604659866f47947da4 to your computer and use it in GitHub Desktop.
//onepage nav start
$('ul#nav > li > a').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
//onepage nav end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment