Skip to content

Instantly share code, notes, and snippets.

@jeromegn
Created March 26, 2014 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeromegn/9793677 to your computer and use it in GitHub Desktop.
Save jeromegn/9793677 to your computer and use it in GitHub Desktop.
<div class="red-square" id="{{id}}-red-square">
</div>
<style>
.red-square {
background-color: red;
}
</style>
<script>
var square = $("#{{id}}-red-square")
square.on('click', function() {
console.log("Ah you touched me! I am {{id}}")
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment