Is there an array created somewhere of all the objects with a specific class? I want to find the sixth div with class="clCategory". Is there something like:
$('.clCategory:sixth').css(...);
or
$('.clCategory')[6].css(...);
Or do I have to create the array at the same time I programmatically create each of the DIVs with class="clCategory"?