I am having a problem parsing this html:
<div class="big-photo report-photo">
<img alt="Europa" src="/media/asset_publics/resources/000/004/121/news_landscape/europa.jpg?1339265409" />
and my code:
Element img = doc.select("div[class=big-photo report-photo] img").first();
I connect succesfully jsoup with the html but the img is null, what am I doing wrong?