I've been looking on jsoup page, but all I could do was extract titles and so on from url... but I need whole absolute url address from exact div. I want to store it somewhere and use it later.
<div class="link-block container">
<a href="/what-to-do/11636002" rel="nofollow"
title="unique abilities" class="just-link">
</a>
</div>
As I said, I tried String absHref = link.attr("abs:href")
, but it gave me the "title" part from the code. What I am doing wrong? Please give me some advice.