jquery css selectors - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T13:13:44Zhttp://stackoverflow.com/feeds/question/282198http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/282198/jquery-css-selectors3jquery css selectorsweb7junkie2008-11-11T21:31:25Z2008-11-14T00:16:39Z
<p>HI</p>
<p>i want to select a bunch of spans in a div whose css contains a particular background color. how do i achive this?</p>
<p>Any help is much appreciated.</p>
<p>thanks</p>
http://stackoverflow.com/questions/282198/jquery-css-selectors/282208#2822082Answer by okoman for jquery css selectorsokoman2008-11-11T21:35:19Z2008-11-11T21:35:19Z<p>Use the attribute selector [attribute=value] to look for a certain attribute value.</p>
<pre><code>#id_of_the_div span[background-color=rgb(255,255,255)]
</code></pre>
http://stackoverflow.com/questions/282198/jquery-css-selectors/282595#28259513Answer by Owen for jquery css selectorsOwen2008-11-12T00:08:49Z2008-11-14T00:16:39Z<p>if i understand the question correctly, the selector <code>[attribute=value]</code> <strong>will not work</strong> because <code><span></code> does not contain an attribute "background-color". you can test that out quickly to confirm it won't match anything:</p>
<pre><code>$('#someDiv span[background-color]').size(); // returns 0
</code></pre>
<p>given:</p>
<pre><code>// css
.one, .two {
background-color: black;
}
.three {
background-color: red;
}
// html
<div id="someDiv">
<span class="one">test one</span>
<span class="two">test two</span>
<span class="three">test three</span>
</div>
</code></pre>
<p>here's a snippet that <strong>will work</strong>:</p>
<pre><code>$('div#someDiv span').filter(function() {
var match = 'rgb(0, 0, 0)'; // match background-color: black
/*
true = keep this element in our wrapped set
false = remove this element from our wrapped set
*/
return ( $(this).css('background-color') == match );
}).css('background-color', 'green'); // change background color of all black spans
</code></pre>
http://stackoverflow.com/questions/282198/jquery-css-selectors/284216#2842160Answer by web7junkie for jquery css selectorsweb7junkie2008-11-12T15:03:11Z2008-11-12T15:03:11Z<p>Hi Owen\Sebastain
Thanks for your respective replies.
Owens suggestion worked great. thanks for the answer. </p>
<p>thanks</p>