en.javascript.info/2-ui/2-events-and-interfaces/4-event-bubbling/both.view/script.js
Ilya Kantor 87bf53d076 update
2014-11-16 01:40:20 +03:00

13 lines
No EOL
340 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);
elems[i].addEventListener("click", highlightThis, false);
}
function highlightThis() {
this.style.backgroundColor = 'yellow';
alert(this.tagName);
this.style.backgroundColor = '';
}