Question:How can the child img be selected inside the div with a selector?
A jQuery(this).children("img"); B jQuery(this).find("img"); C $(this).find("img").attr("alt") D $(this).children("img").attr("alt")
+ AnswerB
+ Report