Skip to content

Instantly share code, notes, and snippets.

@winsonwq
Created April 20, 2012 16:29
Show Gist options
  • Save winsonwq/2430135 to your computer and use it in GitHub Desktop.
Save winsonwq/2430135 to your computer and use it in GitHub Desktop.
bubble and capture
var outer = document.getElementById('outer');
var inner = document.getElementById('inner');
outer.addEventListener('click', function(evt){
console.log(evt.target);
alert(0);
}, false);
inner.addEventListener('click', function(evt){
console.log(evt.currentTarget);
alert(1);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment