Skip to content

Instantly share code, notes, and snippets.

@imcotton
Created May 29, 2012 19:52
Show Gist options
  • Save imcotton/2830320 to your computer and use it in GitHub Desktop.
Save imcotton/2830320 to your computer and use it in GitHub Desktop.
do in coffee-script
<html>
<head>
<script type="text/javascript" src="http://goo.gl/suRSw"></script>
</head>
<body>
<ul>
<li><a href="#" title="red">red</a></li>
<li><a href="#" title="blue">blue</a></li>
</ul>
<script type="text/coffeescript">
for item in document.getElementsByTagName 'a'
do (item) ->
item.onclick = ->
document.body.style.backgroundColor = item.title
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment