Advertisement
petar_bonov

focus row (script)

Dec 30th, 2020
808
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function () {
  2.     const table = document.querySelector("table");
  3.     const links = Array.from(table.querySelectorAll("a"));
  4.     links.forEach(function (a) {
  5.         a.addEventListener("mouseup", function (event) {
  6.             links.forEach(function (aa) { aa.closest("tr").style.background = ""; });
  7.             this.closest("tr").style.background = "#ffd9001a";
  8.         });
  9.     });
  10. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement