Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kuznetsovandrey76/39a1fba45c212c32415d000743211ab9 to your computer and use it in GitHub Desktop.
Save kuznetsovandrey76/39a1fba45c212c32415d000743211ab9 to your computer and use it in GitHub Desktop.
var div = document.querySelectorAll('div'),
result;
for (var i = 0; i < div.length; i++) {
result = div[i];
result.addEventListener('click', function() {
alert(this.innerHTML);
});
}
@johnson-maria
Copy link

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment