You can use .find
from that class:
$("div.ThirdRowBanner").find("img").each(function() {
console.log($(this).attr("title"));
console.log($(this).attr("src"));
console.log($(this).attr("alt"));
});
0
solved jQuery retrieve elements from nested classes