1# I need assistance in changing the CSS properties of a TD, Class, and div using a selector that specifies a specific number range. Specifically, I am looking to modify the css of torrent results with a seed count between 250-25000. Any torrents with a seed count lower or exceeding this range should have a different css attribute applied. Any help would be greatly appreciated.
References (both do not work as intended):
1. http://jsfiddle.net/fVtaF/4/
2. http://jsfiddle.net/fVtaF/3/
My code for identifying keywords in titles does not produce desired results:
1. $( '.blah td:contains("250-25000") ') .css( {"display":"none"} );
2. $(".blah td:contains(255-25000)").css({'color':'red'});
I want to style this number in CSS Red (250-25000):
<table id="searchResult">
<td align="right">1024</td>
</table>
2# Additionally, how can I adjust my code to identify keywords without considering capitalization?
$( '.feed-item-container:contains("Justin Bieber") ') .css( {"display":"none"} );