Skip to content

Instantly share code, notes, and snippets.

@rimenes
Last active August 29, 2015 14:14
Show Gist options
  • Save rimenes/3aeb1c6876981c81d6a1 to your computer and use it in GitHub Desktop.
Save rimenes/3aeb1c6876981c81d6a1 to your computer and use it in GitHub Desktop.
Scroll to div + pushState
var base_url = 'http://localhost'
$('.menu a').on('click', function(event) {
event.preventDefault();
var path = this.attr("href");
history.pushState("", "", path);
path = path.replace(base_url, '');
path = path.replace('/', '');
path = path.replace('#', '');
$('html,body').animate({scrollTop: ($('#' + path).offset().top)}, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment