I've just started out using JSoup to get small text from websites but I just can't figure out how to get the word "BONES" from the class "title":
<a href="https://anilist.co/studio/4/BONES" target="_blank" ng-show="b.studio.name">BONES</a>
Here's my code:
Document doc = Jsoup.connect("http://anichart.net/Winter-2019").userAgent("mozilla/17.0").get();
Elements temp = doc.select("div.title");
for(Element s : temp) {
System.out.println(s.getElementsByTag("a").text());
}