I\'ve created a simple java script that used Jsoup to parse a page of data. The site creators have changed the page however, so much that if there is a certain amount of dat
Use firefox's or chrome's developer tools. When you click on the link, there is propably an ajax call firing. On the network tab, you can see which url the javascript actually requests and how the result is structured (propably json). Then you can directly access that url to load the rest of the results.
Or something along those lines ^^