jquery css selectors - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T13:13:44Z http://stackoverflow.com/feeds/question/282198 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/282198/jquery-css-selectors 3 jquery css selectors web7junkie 2008-11-11T21:31:25Z 2008-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#282208 2 Answer by okoman for jquery css selectors okoman 2008-11-11T21:35:19Z 2008-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#282595 13 Answer by Owen for jquery css selectors Owen 2008-11-12T00:08:49Z 2008-11-14T00:16:39Z <p>if i understand the question correctly, the selector <code>[attribute=value]</code> <strong>will not work</strong> because <code>&lt;span&gt;</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 &lt;div id="someDiv"&gt; &lt;span class="one"&gt;test one&lt;/span&gt; &lt;span class="two"&gt;test two&lt;/span&gt; &lt;span class="three"&gt;test three&lt;/span&gt; &lt;/div&gt; </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#284216 0 Answer by web7junkie for jquery css selectors web7junkie 2008-11-12T15:03:11Z 2008-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>