Created
May 16, 2019 15:57
-
-
Save morgyface/28ecb2e9c7dcd1b9fe922302ffe36d76 to your computer and use it in GitHub Desktop.
JS | jQuery | Click button to change class
This file contains hidden or 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
| <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