In this below script, hange SharePoint list field color using jquery code
$("table.ms-listviewtable > tbody > tr > td:nth-child(columnNumber) > div").filter(function() {
( parseInt( $(this).text() ) > 59 ) ? $(this).css("background-color", "#00FF66") : null
});
( parseInt( $(this).text() ) > 59 ) ? $(this).css("background-color", "#00FF66") : null
});
No comments:
Post a Comment