I have DIV structure like this:
<div id="wire" style="position: absolute">
<div style="position: absolute;background:white" ></div>
<div style="position: absolute;background:red" ></div>
<div style="position: absolute;background:white" ></div>
<div style="position: absolute;background:red" ></div>
<div style="position: absolute;background:white" ></div>
</div>
I'm able to get all child div's in jquery like this :
$("#wire > div")
How to get all div's with white background only?