show/hide this revision's text 3 code cleanup

if i understand the question correctly, Sebastian's answer the selector [attribute=value] will not work because span <span> does not contain an attribute "background-color". you can test that out quickly to confirm it won't match anything:

$('#someDiv span[background-color]').size(); // returns 0

given:

// 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>

here's a snippet that will work:

$('div#someDiv span').filter(function() {
    var match = 'rgb(0, 0, 0)'; // match background-color: black
    if ( $(this).css('background-color') == match ) {
        return true; //*
        true = keep this span element in our wrapped set
        }
    return false ; // = remove this span element from our wrapped set
                                                         */
    return ( $(this).css('background-color') == match );

}).css('background-color', 'green'); // change background color of all black spans
show/hide this revision's text 2 clarification

if i understand the question correctly, Sebastian's answer will not work because span does not contain an attribute "background-color". you can test that out quickly to confirm it won't match anything:

$('#someDiv span[background-color]').size(); // returns 0

given:

// css
.one, .two {
  background-color: black;
}

.three {
  background-color: red;
}

// html
<div id="someDiv">
    <span class="one">test</span>
    >test one</span>
    <span class="two">testtwo</span>
    >test two</span>
    <span class="three">testthree</span>
>test three</span>
</div>

$('#someDiv span[background-color]') will only match elements <span> within <div id="someDiv"> which have an attribute background-color. you can test that out quickly to confirm it won't match anything:

$('#someDiv span[background-color]').size(); // returns 0

for the obvious reason that, span does not contain an attribute "background-color".

here's a snippet that will workgiven the above HTML:

$('div#someDiv span').filter(function() {
    var match = 'rgb(0, 0, 0)'; // match background-color: black
    if ( $(this).css('background-color') == match ) {
        return true; // keep this span in our wrapped set
    }
    return false; // remove this span from our wrapped set
}).css('background-color', 'green'); // change background color of all black spans
show/hide this revision's text 1

if i understand the question correctly, Sebastian's answer will not work

given:

// css
.one, .two {
  background-color: black;
}

.three {
  background-color: red;
}

// html
<div id="someDiv">
    <span class="one">test</span>
    <span class="two">testtwo</span>
    <span class="three">testthree</span>
</div>

$('#someDiv span[background-color]') will only match elements <span> within <div id="someDiv"> which have an attribute background-color. you can test that out quickly to confirm it won't match anything:

$('#someDiv span[background-color]').size(); // returns 0

for the obvious reason that, span does not contain an attribute "background-color". here's a snippet that will work given the above HTML:

$('div#someDiv span').filter(function() {
    var match = 'rgb(0, 0, 0)'; // match background-color: black
    if ( $(this).css('background-color') == match ) {
        return true; // keep this span in our wrapped set
    }
    return false; // remove this span from our wrapped set
}).css('background-color', 'green'); // change background color of all black spans