Skip to content

Instantly share code, notes, and snippets.

@oleksapro
Last active August 29, 2015 14:23
Show Gist options
  • Save oleksapro/8759b069a4cad4f75a5c to your computer and use it in GitHub Desktop.
Save oleksapro/8759b069a4cad4f75a5c to your computer and use it in GitHub Desktop.
// 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