Skip to content

Instantly share code, notes, and snippets.

@binary-data
Created July 9, 2017 09:11
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 binary-data/e3f83e4b5b2d184937e99d907725ee99 to your computer and use it in GitHub Desktop.
Save binary-data/e3f83e4b5b2d184937e99d907725ee99 to your computer and use it in GitHub Desktop.
<script>
jQuery("#termpopup_label").click(function(event) {
jQuery("#termpopup").show();
return false;
});
jQuery("#termpopup button, #termpopup #termpopup_close").click(function(event) {
jQuery("#termpopup").hide();
return false;
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment