Skip to content

Instantly share code, notes, and snippets.

@J5Dev
Created July 17, 2014 08:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save J5Dev/b89c8bb0c8bc719f75db to your computer and use it in GitHub Desktop.
Save J5Dev/b89c8bb0c8bc719f75db to your computer and use it in GitHub Desktop.
Animated Accordion for Zurbs Foundation Acordian
$(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