script type="text/javascript">
$(document).ready(function()
{
$('#gridMapping > tbody > tr').each(function(index)
{
if ($(this).children('td:nth-child(5)').text() == "Done")
{
$(this).children('td').css("background-color", "#33CC99");
} else
{
$(this).children('td').css("background-color", "#FFCC99");
}
});
});
No comments:
Post a Comment