Skip to content

Instantly share code, notes, and snippets.

@ubershmekel
Created January 23, 2014 22:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ubershmekel/8588187 to your computer and use it in GitHub Desktop.
Save ubershmekel/8588187 to your computer and use it in GitHub Desktop.
var origin = function () {
// IE10 Doesn't have window.location.origin :(
if (!window.location.origin) {
var port = window.location.port ? ':' + window.location.port : '';
return window.location.protocol + "//" + window.location.hostname + port;
} else {
return window.location.origin;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment