Skip to content

Instantly share code, notes, and snippets.

@J5Dev
Created July 17, 2014 08:42
Show Gist options
  • Save J5Dev/b89c8bb0c8bc719f75db to your computer and use it in GitHub Desktop.
Save J5Dev/b89c8bb0c8bc719f75db to your computer and use it in GitHub Desktop.

Revisions

  1. J5Dev created this gist Jul 17, 2014.
    8 changes: 8 additions & 0 deletions Foundation.Animated.Acordian.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    $(function() {
    $(".accordion").on("click", "dd", function () {
    $("dd.active").find(".content").slideUp("slow");
    if (!$(this).hasClass("active")) {
    $(this).find(".content").slideToggle("slow");
    }
    });
    });