Warunek JavaScript oparty na wartości komórki tabeli
$(document).ready(function () {
$("#tblstudents td:nth-child(3)").each(function () {
if (parseInt($(this).text(), 10) <= 400) {
$(this).parent("tr").css("background-color", "red");
}
});
});
Ram S