Skip to content

Instantly share code, notes, and snippets.

@cilquirm
Created January 23, 2009 22:05
Show Gist options
  • Save cilquirm/51227 to your computer and use it in GitHub Desktop.
Save cilquirm/51227 to your computer and use it in GitHub Desktop.
$('div.group-type li.blinded').live('click',function() {
$(this).parents('div.group-type').find('li:gt(3)').slideDown().filter('li.more').toggleClass('blinded').toggleClass('unblinded')
return false;
})
$('div.group-type li.unblinded').live('click', function() {
$(this).parents('div.group-type').find('li:gt(3)').not('li.more').slideUp().end().filter('li.more').toggleClass('blinded').toggleClass('unblinded')
return false;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment