Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $(document).ready(function(){
  2. var uri = window.location.toString();
  3. if (uri.indexOf("?") > 0) {
  4. var clean_uri = uri.substring(0, uri.indexOf("?"));
  5. window.history.replaceState({}, document.title, clean_uri);
  6. }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement