Created
May 18, 2018 10:23
-
-
Save robbitt07/5b35093a612c0c7d4cb8f0e0e3800145 to your computer and use it in GitHub Desktop.
fade js
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
| <script type = "text/javascript"> | |
| $(document).ready(function(){ | |
| $(".<id-click>").click(function(event){ | |
| event.preventDefault(); | |
| $(this).next(".<id>").fadeToggle(); | |
| }) | |
| }) | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment