jochen-z
12/7/2017 - 3:06 PM

Change IR Row Background on Click

-DA Event: click, Selection: jQuery, Selector: .a-IRR-table tr td

Event Scope: Dynamic; Container: #mainreport

$(".hl-row").each(function(){       
  $(this).removeClass('hl-row'); 
});
$(this.triggeringElement).closest('tr').find('td').addClass('hl-row');


Page CSS: 
.hl-row {
 background-color:#e6f3ff !important;
}