Try this,
Live Demo
$('td.status[value=Zero]').css('background-color', 'red');
Edit: Based on comments and change in OP
To change the whole row with the given criteria of td
you can do it this way.
Live Demo
$('td.status[value=Zero]').closest('tr').css('background-color', 'red');