Skip to content

Instantly share code, notes, and snippets.

@pcdinh
Created December 9, 2009 09:36
Show Gist options
  • Save pcdinh/252368 to your computer and use it in GitHub Desktop.
Save pcdinh/252368 to your computer and use it in GitHub Desktop.
// collapse table sections
$(document).ready(function() {
$('tbody:has(th)').addClass('collapse')
.find('tr:first-child th')
.wrapInner('<a href="#"></a>')
.find('a')
.click(function() {
var $thisLink = $(this);
$thisLink
.closest('tr').nextAll().toggle();
$thisLink.closest('tbody').toggleClass('expand').toggleClass('collapse');
}).click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment