I tried to call the hover event in the previous row of the table so that I can get the effect defined in CSS, but it does not work. Basically what I have are two rows that need this border effect for overlays whenever every row is washed out. What is the solution in jQuery for this?
JQuery
$("tr").hover(function() { $(this).prev().trigger('mouseover'); });
CSS
tr:hover .row-right { border-right: 10px solid #CCC; }
source share