en.javascript.info/2-ui/2-events/02-bubbling-and-capturing/bubble-target.view/script.js
Ilya Kantor 217eb0e5fa minor
2017-10-14 23:52:37 +03:00

10 lines
279 B
JavaScript

form.onclick = function(event) {
event.target.style.backgroundColor = 'yellow';
// chrome needs some time to paint yellow
setTimeout(() => {
alert("target = " + event.target.tagName + ", this=" + this.tagName);
event.target.style.backgroundColor = ''
}, 0);
};