I would like to fade all divs that have a numeric attribute greater than or less than a given number.
Something like $( "div[id$=2]" ).fadeTo("slow", 0.6);
but I would like to use the ">" or "<" operator instead of "="
basically I would name all my divs something like
<div id="22">text</div>
<div id="35">text</div>
<div id="40">text</div>
and then use
$( "div[id$>35]" ).fadeTo("slow", 0.6);
to fade out the last cell