Skip to content

Instantly share code, notes, and snippets.

@morgyface
Created May 16, 2019 15:57
Show Gist options
  • Select an option

  • Save morgyface/28ecb2e9c7dcd1b9fe922302ffe36d76 to your computer and use it in GitHub Desktop.

Select an option

Save morgyface/28ecb2e9c7dcd1b9fe922302ffe36d76 to your computer and use it in GitHub Desktop.
JS | jQuery | Click button to change class
<button class="reveal">-></button>
<div id="nav" class="closed">
<!-- buttons -->
</div>
<script>
$('.reveal').click(function(){
$('#nav').toggleClass( "open" ).toggleClass( "closed" );
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment