Skip to content

Instantly share code, notes, and snippets.

@delputnam
Created May 10, 2013 12:01
Show Gist options
  • Save delputnam/5553992 to your computer and use it in GitHub Desktop.
Save delputnam/5553992 to your computer and use it in GitHub Desktop.
Determine if a browser supports window.history.pushState.
function windowHistorySupported() {
// If pushState is supported, return true, else return false.
return !!(window.history && window.history.pushState);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment