Created
July 9, 2017 09:11
-
-
Save binary-data/e3f83e4b5b2d184937e99d907725ee99 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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