Files
uni-web-site/lectures/lec6/part2/task4.js
2026-01-03 15:32:33 +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');
});
});