Advertisement
connecteddeveloper

Bubbling

Oct 31st, 2014
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.20 KB | None | 0 0
  1. button.addEventListener("click", someFunction, false); // false for bubbling
  2.  
  3. window[6]
  4.     document[5]
  5.         html [4]
  6.             body[3]
  7.                 header[2]
  8.                     a.logo[1]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement