Created
October 30, 2015 01:38
-
-
Save unr/9d60063b3a4851b3170d to your computer and use it in GitHub Desktop.
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
| $('.js-toggle-link').on('click', function(e) { | |
| var target = $(e.currentTarget).data('toggle-target'); | |
| $(target).toggle(); | |
| }); |
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
| <a class='js-toggle-link' data-toggle-target='#someID'>Click me to toggle</a> | |
| <div id='someID'>This should toggle when above is clicked.</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment