Skip to content

Instantly share code, notes, and snippets.

@videlais
Created September 2, 2015 00:22
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 videlais/80d4d4c533501fd25258 to your computer and use it in GitHub Desktop.
Save videlais/80d4d4c533501fd25258 to your computer and use it in GitHub Desktop.
Twine jQuery Click Event
<div class="clickMe">Click me!</a>
<div class="replaceMe"></div>
<script>
$(".clickMe").click(function() {
$(".replaceMe").text("This text will be shown after the click!");
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment