en.javascript.info/2-ui/2-events-and-interfaces/4-event-bubbling/both.view/script.js
2015-03-09 18:48:58 +03:00

12 lines
No EOL
344 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 = '';
}