To give a simplified example, I\'ve got the following block repeated on the page lots of times (it\'s dynamically generated):
&l
You could use .each() with .children() and a selector within the parenthesis:
.each()
.children()
//Grab Each Instance of Box. $(".box").each(function(i){ //For Each Instance, grab a child called .something1. Fade It Out. $(this).children(".something1").fadeOut(); });