Code: Select all
<img width="600" src="http://assets.amuniversal.com/b116ca2047f1013010fe001dd8b71c47" onload="Meebo('makeSharable',{element:this, type:'image', shadow:'none', title:'Calvin and Hobbes', url:document.location.href, tweet:'Check out Calvin and Hobbes on GoComics', description:'Check out Calvin and Hobbes on GoComics'})" class="strip" alt="Calvin and Hobbes">
When I looked at the gocomics.com html source, I noticed that there's also a link to a larger version of the comic immediate following, which I would like to display instead:
Code: Select all
<div style="display: none;" id="mutable_972267"><img src="http://assets.amuniversal.com/b1fb3b1047f1013010fe001dd8b71c47?width=900.0" class="strip" alt="B1fb3b1047f1013010fe001dd8b71c47?width=900"></div>
However, after doing some debugging on the plugin, it seems that for some reason the xpath query "//img[@src]" does not find this entry. I was ultimately able scrape it out using "/div/img", but I was wondering if someone could help me understand why this is not found by an "//img" query (that should be pulling all <img> tags).
Cheers.