If my page has a bunch of divs like below. How can I target the individual titles with JQuery. I want to change the color on each title based on it's pos \[code\]<div id="box_list"> <div class="container"> <div class="title">Red</div> </div> <div class="container"> <div class="title">Blue</div> </div> <div class="container"> <div class="title">Orange</div> </div></div>$(document).ready(function () { $("#box_list:nth-child(1)") .css("color", "red")});\[/code\]