so i want to store the url of this image
i am searching for this html code:
<link rel="image_src" href="http://ex.com/Data/CLOCK/fb.jpg">
by
Elements el = doc.getElementsByAttribute("rel");
Element link = el.select("image_src").first();
the code above gives all the links in the html document which contains around 30+ links. is there a way to get that specific link above?
Thanks