The code below can checks if the image is visible or not.
$('#div1 img:visible')
Which selects all image descendants and:
$('#div1 > img:visible')
I just need to know that when I iterate over every image in a container like dgImages $("#dgImages] img").each(function () {}
how I can determine that the image is visible or not ? Can I write something like if($(this:visible)){//Do something}
?. Thanks.