Created
October 28, 2010 12:40
-
-
Save sebs/651252 to your computer and use it in GitHub Desktop.
Clicking the clickchickstick ;)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<style> | |
#outer { | |
background-color: pink; | |
padding:20px; | |
} | |
#middle { | |
background-color: green; | |
padding:20px; | |
} | |
#inner { | |
background-color: blue; | |
padding:20px; | |
} | |
</style> | |
<body> | |
<div id="outer"> | |
<div id="middle"> | |
<div id="inner"> | |
Inner | |
</div> | |
</div> | |
</div> | |
</body> | |
<script type="text/javascript"> | |
var cb = function(params) { | |
console.log(params.target.id); | |
// alert('klick') | |
}; | |
document.addEventListener('click', cb, false); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment