Created
January 15, 2019 20:41
-
-
Save neyasbltb88/65f7465340591a3252cc465019fd7022 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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