Return to Snippet

Revision: 16040
at July 24, 2009 04:39 by jonniespratley


Initial Code
$('.more').live('click', function(){
	$(this).html() == 'more' ? $(this).html('less') : $(this).html('more');
	$(this).parents('.description:first').find('.body').toggle('slow');
	return false;
});

Initial URL


Initial Description


Initial Title
jquery - Toggle More Text

Initial Tags
text

Initial Language
jQuery