Skip to content

Instantly share code, notes, and snippets.

@eric-wood
Last active August 29, 2015 13:57
Show Gist options
  • Save eric-wood/9842636 to your computer and use it in GitHub Desktop.
Save eric-wood/9842636 to your computer and use it in GitHub Desktop.
var stuff= jQuery('blockquote blockquote'); stuff.hide(); stuff.each(function() { var foo = jQuery(this); jQuery('<div class="quote-expand">expand</div>').prependTo(foo.parent()); }); jQuery('.quote-expand').click(function() { var stuffs = jQuery(event.target).parent().find('blockquote'); jQuery(stuffs[0]).is(':visible') ? stuffs.slideUp() : stuffs.slideDown() });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment