Skip to content

Instantly share code, notes, and snippets.

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