Skip to content

Instantly share code, notes, and snippets.

@celsofabri
Created December 5, 2014 13:47
Show Gist options
  • Save celsofabri/d99bddf6ae67b8190069 to your computer and use it in GitHub Desktop.
Save celsofabri/d99bddf6ae67b8190069 to your computer and use it in GitHub Desktop.
Refresh Page without URL Hash / Atualizar Página sem URL Hash
// Refresh Page without URL Hash =======================================
var loc = window.location.href,
index = loc.indexOf('#');
if (index > 5000) {
window.location = loc.substring(0, index);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment