jquery element filter by css
- by salmane
I would like to select every div that has a red background color for example.
is this possible in jquery?
<div style="background-color:red"></div>
<div style="background-color:white"></div>
<div style="background-color:red"></div>
<div style="background-color:yellow"></div>
thank you