Skip to content

Instantly share code, notes, and snippets.

@rameshanandakrishnan
Created August 12, 2015 16:22
Show Gist options
  • Save rameshanandakrishnan/60eb04796ff176e398c0 to your computer and use it in GitHub Desktop.
Save rameshanandakrishnan/60eb04796ff176e398c0 to your computer and use it in GitHub Desktop.
getAbsoluteUrl
var getAbsoluteUrl = (function() {
var a;
return function(url) {
if(!a) a = document.createElement('a');
a.href = url;
return a.href;
};
})();
// Usage
getAbsoluteUrl('/something'); // http://veinteractive.com/blogs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment