Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created September 6, 2019 18:12
Show Gist options
  • Save Farmatique/eda931a2c2cb05b2cc3814b2c0de649a to your computer and use it in GitHub Desktop.
Save Farmatique/eda931a2c2cb05b2cc3814b2c0de649a to your computer and use it in GitHub Desktop.
REmove query string in url (remove after ?q)
$(document).ready(function(){
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