Created
July 17, 2014 08:42
-
-
Save J5Dev/b89c8bb0c8bc719f75db to your computer and use it in GitHub Desktop.
Animated Accordion for Zurbs Foundation Acordian
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
$(function() { | |
$(".accordion").on("click", "dd", function () { | |
$("dd.active").find(".content").slideUp("slow"); | |
if (!$(this).hasClass("active")) { | |
$(this).find(".content").slideToggle("slow"); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment