I have a piece of HTML code of a web page (library thing) like:
<div class="qelcontent" id="4ed0e0ba4f1b16.47984984" style="display:block;">
<div class="description"><h4 class="first"><b>Amazon.com Product Description</b>
(<a href="http://rads.stackoverflow.com/amzn/click/0860783227">ISBN 0860783227</a>, Hardcover)</h4>
I want to get the absolute URL from an href attribute. I tried:
selector = document.select(".first .a[href]");
But it returned null. How can I get the value?
