Files
uni-web-site/lectures/lec6/part2/task4.js
2026-01-09 19:38:48 +10:00

10 lines
258 B
JavaScript

document.querySelectorAll('img').forEach(function(img) {
img.addEventListener('mouseover', function() {
this.classList.add('border');
});
img.addEventListener('mouseout', function() {
this.classList.remove('border');
});
});