Skip to content

Instantly share code, notes, and snippets.

@mike-gusiev
Created May 24, 2015 20:25
Show Gist options
  • Save mike-gusiev/adea5b4f5080faedd3b5 to your computer and use it in GitHub Desktop.
Save mike-gusiev/adea5b4f5080faedd3b5 to your computer and use it in GitHub Desktop.
window.change_url = function (url) {
try {
history.pushState({}, '', url);
} catch(e) {
location.hash = '#' + url;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment