Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function () {
- const table = document.querySelector("table");
- const links = Array.from(table.querySelectorAll("a"));
- links.forEach(function (a) {
- a.addEventListener("mouseup", function (event) {
- links.forEach(function (aa) { aa.closest("tr").style.background = ""; });
- this.closest("tr").style.background = "#ffd9001a";
- });
- });
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement