I'm trying to get the content from a website, that uses "onClick" instead of "href" in hyperlinks, so the url is always the same, despite of the page you are seeing.
http://www.sas.ul.pt/index.php
This is the website, and the content i'm trying to get is inside "Alimentação" > "Estudantes".
<a href="#" onclick="return go('','4;02');" title="Estudantes">Estudantes</a>
Is this possible with Jsoup?
onClicks? Anyway, no, that's going to be might hard, unless you understand what thosego()function calls mean and can somehow parse them and convert them into actual URIs.