I have an HTML table with a lot of numbers.
Is it possible to have a table cell change background color if the value inside that cell (or column) equals or is less than
Here's an example of how to do it with JS/Jquery
$("#Yourtable td").each( function() { var thisCell = $(this); var cellValue = parseInt(thisCell.text()); if (!isNaN(cellValue) && (cellValue <=3000)) { thisCell.css("background-color","#FF0000"); } } )