Last active
December 22, 2015 16:18
-
-
Save devinschulz/6498025 to your computer and use it in GitHub Desktop.
A Pen by Devin Schulz.
This file contains 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
<dl class="accordion"> | |
<dt><a href="#">heading</a></dt> | |
<dd>Hidden Content</dd> | |
<dt><a href="#">heading</a></dt> | |
<dd>Hidden Content</dd> | |
<dt><a href="#">heading</a></dt> | |
<dd>Hidden Content</dd> | |
</dl> |
This file contains 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
(($) -> | |
panel = $(".accordion > dd").hide() | |
$(".accordion > dt > a").click (event) -> | |
event.preventDefault(); | |
if $(@).parent().next('dd').is(':visible') then panel.slideUp() | |
else | |
panel.slideUp() | |
$(this).parent().next().slideDown() | |
false | |
) jQuery |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment