jquery element filter by css
Posted
by salmane
on Stack Overflow
See other posts from Stack Overflow
or by salmane
Published on 2010-05-11T16:17:28Z
Indexed on
2010/05/11
16:24 UTC
Read the original article
Hit count: 255
jQuery
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
© Stack Overflow or respective owner