Given an anchor element (with something like $(\"a:first\")), how do you get the absolute URL that the anchor points to?
$(\"a:first\")
var x = "http://lol.com/" + $("a:first").prop('href');
that should work unless it's an external url :)