Skip to content

Instantly share code, notes, and snippets.

@dexit
Forked from robhob/reveal-section.js
Created November 15, 2019 11:15
Show Gist options
  • Save dexit/6d61b6be6b40c4b6b9d84bb3e64f5789 to your computer and use it in GitHub Desktop.
Save dexit/6d61b6be6b40c4b6b9d84bb3e64f5789 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