Skip to content

Instantly share code, notes, and snippets.

@czterystaczwarty
Created September 16, 2015 21:39
Show Gist options
  • Save czterystaczwarty/1a138ed515c31044cbc7 to your computer and use it in GitHub Desktop.
Save czterystaczwarty/1a138ed515c31044cbc7 to your computer and use it in GitHub Desktop.
var getAbsoluteUrl = (function() {
var a;
return function(url) {
if(!a) a = document.createElement('a');
a.href = url;
return a.href;
};
})();
// Usage
getAbsoluteUrl('/something'); // http://davidwalsh.name/something
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment