Have a requirement, find a text in interactive report and add a style for that entire row.
$(‘td:contains(“TOTAL”)’).filter(function() {
//$(‘tr td’).attr(‘style’, ‘font-weight: bold’);
// $(‘tr td’).css({ ‘background-color’ : ‘green’})
$(this).closest(‘tr’).css({ ‘font-weight’ : ‘bold’});
});
Above code find a “TOTAL” text and convert into bold for that entire row.