Skip to content

Instantly share code, notes, and snippets.

@JamieMason
Created March 4, 2011 19:41
Show Gist options
  • Save JamieMason/855570 to your computer and use it in GitHub Desktop.
Save JamieMason/855570 to your computer and use it in GitHub Desktop.
javascriptmasterclass.com - DOM task 1
<div id="the_div">
<ul id="the_list">
<li id="the_item">Click me!</li>
</ul>
</div>
<p id="log"></p>
<!--
1. Change the addEventListener calls so that the events occur in the following order.
the_div! the_item! the_list!
-->
<script type="text/javascript" charset="utf-8">
function log(string){
document.getElementById('log').innerHTML += (string + '<br/>');
}
document.getElementById('the_div').addEventListener(
'click', function(){ log('the_div!') }, true);
document.getElementById('the_list').addEventListener(
'click', function(){ log('the_list!') }, false);
document.getElementById('the_item').addEventListener(
'click', function(){ log('the_item!') }, false);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment