For example, I have this bunch of img tags, and I want to get all the src value.
How can I do that? I tried Elements img = doc.select("img")
then String imgSrc = img.attr("src")
. The result is, I get only the first src. How can I get all the image src?
<img src="blah blah.jpg"></img>
<img src=".........jpg"></img>
...........
<img src="end.jpg></img>