Skip to content

Instantly share code, notes, and snippets.

@robhob
Last active November 15, 2019 11:15
Show Gist options
  • Save robhob/60f42210a3a5f83851f2b7803270ec91 to your computer and use it in GitHub Desktop.
Save robhob/60f42210a3a5f83851f2b7803270ec91 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
jQuery(document).ready(function() {
// Hide the div
jQuery('#reveal').hide();
jQuery('.rv_button').click(function(e){
e.preventDefault();jQuery("#reveal").slideToggle();
jQuery('.rv_button').toggleClass('opened closed');
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment