Skip to content

Instantly share code, notes, and snippets.

@buddylindsey
Created December 2, 2011 03:35
Show Gist options
  • Select an option

  • Save buddylindsey/1421617 to your computer and use it in GitHub Desktop.

Select an option

Save buddylindsey/1421617 to your computer and use it in GitHub Desktop.
jQuery Content from li
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".touch").click(function(){
alert($(this).html());
});
});
</script>
<head>
<body>
<ul>
<li class="touch">Buddy</li>
<li class="touch">Shane</li>
<li class="touch">John</li>
<li class="touch">Frank</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment