Skip to content

Instantly share code, notes, and snippets.

@irissilvermoon
Last active December 30, 2015 04:09
Show Gist options
  • Save irissilvermoon/7774581 to your computer and use it in GitHub Desktop.
Save irissilvermoon/7774581 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('h1').on('click', function(event) {
var $h1 = $(event.currentTarget)
$('.content').not('h1').hide('slow')
$h1.next().slideToggle("slow")
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment