I want ot apply a style to some elements within a div:
<div id="showcase">
<div class="project">
<div class="project"> <!-- add a style here -->
<div class="project">
<div class="project"> <!-- add a style here -->
<div class="project">
<div class="project"> <!-- add a style here -->
</div>
The project divs are WordPress posts so I can’t just add the class in the div. So I think jQuery is the way to go.
Any suggestions?
http://api.jquery.com/odd-selector/
For optimal performance you should do:
As James pointed out (and the docs above)
:oddis used instead of:evenbecause counting is0based.