I am trying to extract all the image url\'s from this webpage using jsoup? Can anyone offer help on how to do it? All the tags are formatted like this, but I only need the s
Supposing you already have the Element according to this IMG, try this:
String source = img.attr("src");
This attr method is inherited from Node class
HTH