en.javascript.info/02-ui/02-events-and-interfaces/04-event-bubbling/capture/script.js
Ilya Kantor f301cb744d init
2014-10-26 22:10:13 +03:00

12 lines
No EOL
280 B
JavaScript
Executable file

var elems = document.querySelectorAll('form,div,p');
for(var i=0; i<elems.length; i++) {
elems[i].addEventListener("click", highlightThis, true);
}
function highlightThis() {
this.style.backgroundColor = 'yellow';
alert(this.tagName);
this.style.backgroundColor = '';
}