Skip to content

Instantly share code, notes, and snippets.

@joshblack
Created October 5, 2014 17:00
Show Gist options
  • Save joshblack/8aa2278ea6f7bcafaf78 to your computer and use it in GitHub Desktop.
Save joshblack/8aa2278ea6f7bcafaf78 to your computer and use it in GitHub Desktop.
<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