Skip to content

Instantly share code, notes, and snippets.

@brenopolanski
Created November 2, 2015 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brenopolanski/cddfa70b8cb125789638 to your computer and use it in GitHub Desktop.
Save brenopolanski/cddfa70b8cb125789638 to your computer and use it in GitHub Desktop.
window.location.origin IE fix
if (!window.location.origin) { // Some browsers (mainly IE) does not have this property, so we need to build it manually...
window.location.origin = window.location.protocol + '//' + window.location.hostname + (window.location.port ? (':' + window.location.port) : '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment