I have a table that highlight the tr (row) on click, and I can highlight multi rows on every click but I want to have only one row to be highlight in table. how to remove the highlight class from sibling rows. code below
JavScript
JavaScript
x
10
10
1
document.querySelector("table").addEventListener("click", function (e) {
2
// Is it a click on a tr in this table?
3
var tr = e.target.closest("tr");
4
if (tr && this.contains(tr)) {
5
// Yes, toggle highlight
6
tr.classList.toggle("highlight");
7
}
8
});
9
10
css
JavaScript
1
4
1
.highlight {
2
background-color: #ffeaea;
3
}
4
Advertisement
Answer
I ended up adding below code and issue resolved.
JavaScript
1
2
1
$('.table tr').removeClass("highlight");
2