Skip to content

Instantly share code, notes, and snippets.

@tedshd
Created March 12, 2013 02:46
Show Gist options
  • Save tedshd/5139891 to your computer and use it in GitHub Desktop.
Save tedshd/5139891 to your computer and use it in GitHub Desktop.
yui demo
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>yui get click index</title>
<script src="http://yui.yahooapis.com/3.8.1/build/yui/yui-min.js"></script>
<script type="text/javascript">
YUI().use('node', function (Y) {
Y.all(".classtest li").on("click", function(e) {
Y.log(this.indexOf(e.currentTarget));
});
});
</script>
</head>
<body>
<ul id="idtest" class="classtest">
<li>01</li>
<li>02</li>
<li>03</li>
<li>04</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment