Created
October 5, 2014 17:00
-
-
Save joshblack/8aa2278ea6f7bcafaf78 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<ul> | |
<li>1</li> | |
<li>2</li> | |
<li>3</li> | |
<li>4</li> | |
<li>5</li> | |
<!-- ... --> | |
</ul> | |
<script> | |
$('ul').on('click', function(event) { | |
console.log($(event.target).html()); // Logs out 1, 2, 3, 4, 5 depending on what | |
li is clicked! | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment