Use jQuery to find div by background color
- by maxsilver
I'm trying to use jQuery to find the number of divs that are both visible, and have a background color of Green.
(Normally I'd just add a class to the div, style it green, and check for that class in jQuery but in this instance, I can't actually change the markup of the page itself in any way)
I currently have the visible div part working as :
if( // if there are more than one visible div
$('div.progressContainer:visible').length > 0
){
I'd like to throw some kind of "and background color is green" selector in there.
// not legit javascript
if( // if there are more than one visible div, and its color is green
$('div.progressContainer:visible[background-color:green]').length > 0
){
Is it possible to do this?