Reputation: 1
I am using ajax to grab a page.
withing a table lies an imagesrc i want to grab.. It is wrapped around an A tag with a class name
i use the following
$response.find(".infobox tr").each(function(){
$a=$(this).find(".image").html();
}
but it returns the image tag <img src="http://uwww.domain.com.au/image.jpg" height="333" width="256">
i have tried the attr("src") and other methods but to no avail.. is there a trick i am missin
Upvotes: 0
Views: 2158