Twitter bootstrap – Avoid highlighting all rows and columns with jQuery
I am using the following piece of jQuery for my table in Twitter Bootstrap: $('td').mouseover(function () { $(this).siblings().css('background-color', '#EAD575'); var ind = $(this).index(); $('td:nth-child(' + (ind + 1) + ')').css('background-color', '#EAD575'); }); $('td').mouseleave(function () { $(this).siblings().css('background-color', ''); var ind =…