Getting an absolute URL from a variable string isn't as easy as you think. There's the URL constructor but it can act up if you don't provide the required arguments (which sometimes you can't). The "burn" element href handles and URL nonsense for you, providing a reliable absolute URL in return.
Last active
September 12, 2015 19:14
-
-
Save petermac-/d1be3063c0cda1d2224c to your computer and use it in GitHub Desktop.
getAbsoluteUrl.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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