Created
January 23, 2009 22:05
-
-
Save cilquirm/51227 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('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