Skip to content

Instantly share code, notes, and snippets.

@neyasbltb88
Created January 15, 2019 20:41
Show Gist options
  • Save neyasbltb88/65f7465340591a3252cc465019fd7022 to your computer and use it in GitHub Desktop.
Save neyasbltb88/65f7465340591a3252cc465019fd7022 to your computer and use it in GitHub Desktop.
function updateURL() {
if (history.pushState) {
var baseUrl = window.location.protocol + "//" + window.location.host + window.location.pathname;
var newUrl = baseUrl + '?tyapk=awesome';
history.pushState(null, null, newUrl);
}
else {
console.warn('History API не поддерживается');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment