Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function solve() {
- const tr = document.getElementsByTagName('tr');
- let lastClicked;
- [...tr].forEach((row) => {
- row.addEventListener('click', (event) => {
- const element = event.target.parentNode.style;
- if (!element.backgroundColor) {
- element.backgroundColor = '#413f5e';
- if (lastClicked) {
- lastClicked.backgroundColor = '';
- }
- } else {
- element.backgroundColor = '';
- }
- lastClicked = element;
- });
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment