Guest User

Untitled

a guest
Jul 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var add_the_handlers = function (nodes) {
  2. var i;
  3. for (i = 0; i < nodes.length; i += 1) {
  4. nodes[i].onclick = function () {
  5. alert(i);
  6. }
  7. }
  8. };
  9. add_the_handlers(document.body.childNodes);
Add Comment
Please, Sign In to add comment