I have some problems with selecting elements, with Jquery. When i try to select a element:
var images = $(\"#htmlChunk\").find(\"img.Thumb\"); console.log(images
try this.
function getId() { var ids = $(".htmlChunk").find("img.thumb"); //it wiill return array of image var sid = $(".htmlChunk").find("img#img2"); //it wiill return wat image you want $(".htmlChunk span").text("arrays:" + ids[0] + " : " + ids[1] + "simple imge:" + sid); }