Skip to content

Instantly share code, notes, and snippets.

@AllThingsSmitty
Created March 28, 2015 14:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AllThingsSmitty/248c26e57dc04f743d37 to your computer and use it in GitHub Desktop.
Save AllThingsSmitty/248c26e57dc04f743d37 to your computer and use it in GitHub Desktop.
Get an absolute URL with JavaScript
var getAbsoluteUrl = (function () {
var a;
return function (url) {
if(!a) a = document.createElement('a');
a.href = url;
return a.href;
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment