Skip to content

Instantly share code, notes, and snippets.

@devinhalladay
Last active December 22, 2015 02:39
Show Gist options
  • Save devinhalladay/6404940 to your computer and use it in GitHub Desktop.
Save devinhalladay/6404940 to your computer and use it in GitHub Desktop.
Remove hashes from the URL on page load.
$(document).ready(function() {
window.location.hash = '';
history.pushState('', document.title, window.location.pathname);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment