Skip to content

Instantly share code, notes, and snippets.

@MiLk
Created November 1, 2011 16:52
Show Gist options
  • Save MiLk/1331148 to your computer and use it in GitHub Desktop.
Save MiLk/1331148 to your computer and use it in GitHub Desktop.
jQuery().ready(function(){
$(".question").next(".reponse").hide();
$(".question").click(function(){
if($(this).next(".reponse").is(":hidden")){
$(".question").next(".reponse:visible").slideUp();
$(".question").removeClass("active");
$(this).addClass("active");
$(this).next(".reponse").slideDown();
}
else
{
$(".question").next(".reponse:visible").slideUp();
$(".question").removeClass("active");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment