I want to get all the hyperlinks of a webpage with Jsoup. Meanwhile, I want to ignore all the hyperlinks of images. Is it possible to add more restrictions for getElementsByTag?
Document doc = Jsoup.connect(url).timeout(1000).get();
links = doc.getElementsByTag("a").not("[src]");