JSoup will not fetch all items?
问题 So, I am trying to parse a simple list using JSoup. Unfortunately, the program only returns the entries up til the entries that start with N in the list. I do not know why this is the case. Here is my code: public ArrayList<String> initializeMangaNameList(){ Document doc; try { doc = Jsoup.connect("http://www.mangahere.com/mangalist/").get(); Elements items = doc.getElementsByClass("manga_info"); ArrayList<String> names = new ArrayList<String>(); for(Element item: items){ names.add(item.text(