Last active
August 29, 2015 14:23
-
-
Save oleksapro/8759b069a4cad4f75a5c 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
// http://anton.shevchuk.name/javascript/jquery-for-beginners/ | |
$(document).ready(function(){ | |
$(".accordion h3:first").addClass("active"); | |
$(".accordion p:not(:first)").hide(); | |
$(".accordion h3").click(function(){ | |
$(this).next("p").slideToggle("slow") | |
.siblings("p:visible").slideUp("slow"); | |
$(this).toggleClass("active"); | |
$(this).siblings("h3").removeClass("active"); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment