total of row cell not get color red if greatest than 1000

total of row cell not get color red if greatest than 1000

I have 5 column
Name    Salary,Bonus,Deduction total
ahmed    500    200     100          600
calculation per total
total=Salary+Bonus-Deduction
if total>1000
make red color per cell total
as sample above i need to get red color per row added
When click button add row must add and total must have red color if greatest than 1000
I try more time to color my cell total only if total greatest than 1000 but not come
my code as following


  1. @{
  2.     Layout = null;
  3. }

  4. <!DOCTYPE html>

  5. <html>
  6. <head>
  7.     <meta name="viewport" content="width=device-width" />
  8.     <title>Index</title>
  9.     <script src="~/Scripts/jquery-1.10.2.js"></script>
  10.     <script>
  11.         $(function () {
  12.             $("#btn").click(function () {
  13.                 var x = $("#txt1").val();
  14.                 var y = $("#txt2").val();
  15.                 var z = $("#txt3").val();
  16.                 var M = $("#txt4").val();
  17.                 var L = parseInt(y) + parseInt(z) - parseInt(M);
  18.               
  19.                 $("#tb").append("<tr> <td>" + x + "</td> <td>" + y + "</td> <td>" + z + "<td>" + M + "</td><td>" + L + "</td></tr>");
  20.             
  21.                // $('td').prop('contentEditable', true);
  22.             });
  23.             $("#tb").on("click", "tr", function () {
  24.                 if (L > 1000) {
  25.                     $(this).parent().prev().addClass('red');
  26.                 }
  27.                 $(this).find("td").slice(0, 4).prop("contenteditable", true);

  28.             });
  29.            
  30.             
  31.         });
  32.     </script>
  33.     <style>
  34.          .red{
  35.     color:#ff0000;
  36.     font-weight:bold;
  37.     }
  38.     </style>
  39.    
  40.     
  41. </head>
  42. <body>
  43.     <div>
  44.         Name<input type="text" id="txt1" /><br />
  45.         Salary<input type="text" id="txt2" /><br />
  46.         Bonus<input type="text" id="txt3" /><br />
  47.         Deduction<input type="text" id="txt4" /><br />
  48.         <input type="button" value="add" id="btn" />
  49.        

  50.         <table>
  51.             <thead>
  52.                 <tr>
  53.                     <td>
  54.                         
  55.                             Name
  56.                         
  57.                        
  58.                     </td>
  59.                     <td>
  60.                         
  61.                             Salary
  62.                         
  63.                         
  64.                     </td>
  65.                     <td>
  66.                         
  67.                             Bonus
  68.                         
  69.                         
  70.                     </td>
  71.                     <td>
  72.                         
  73.                             Deduction
  74.                         
  75.                         
  76.                     </td>
  77.                     <td>
  78.                         total
  79.                     </td>
  80.                 </tr>
  81.             </thead>
  82.             <tbody id="tb" class="tb1"></tbody>
  83.         </table>
  84.     </div>
  85. </body>
  86. </html>