Skip to content

Instantly share code, notes, and snippets.

@ArtemSites
Created October 25, 2019 11:36
Show Gist options
  • Save ArtemSites/d6112feabe5966796bca8059f38f07cb to your computer and use it in GitHub Desktop.
Save ArtemSites/d6112feabe5966796bca8059f38f07cb to your computer and use it in GitHub Desktop.
Очистка хеша из url при перезагрузке
/**
* Очистка хеша из url при перезагрузке:
*/
var loc = window.location.href,
index = loc.indexOf('#');
if (index > 0) {
window.location = loc.substring(0, index);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment