certainlyakey
6/23/2014 - 11:48 AM

Foldable text with headings (jQuery)

Foldable text with headings (jQuery)

var $posttext = $('.post-text');
$posttext.find('h1').nextUntil('h1').hide();
$posttext.find('h1:first').nextUntil('h1').show();
$posttext.find('h1').on('click', function() { 
	$(this).nextUntil('h1').slideToggle(400);
});