Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created May 5, 2016 13:26
Show Gist options
  • Save andreasvirkus/dd8df361d6eeb880df6ead553eae5f6f to your computer and use it in GitHub Desktop.
Save andreasvirkus/dd8df361d6eeb880df6ead553eae5f6f to your computer and use it in GitHub Desktop.
function clearParams() {
var uri = window.location.toString();
if (uri.indexOf("?") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("?"));
window.history.replaceState({}, document.title, clean_uri);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment