13 lines
No EOL
340 B
JavaScript
Executable file
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 = '';
|
|
} |