Skip to content

Instantly share code, notes, and snippets.

@LBRapid
Created July 22, 2010 16:05
Show Gist options
  • Save LBRapid/486170 to your computer and use it in GitHub Desktop.
Save LBRapid/486170 to your computer and use it in GitHub Desktop.
// ---------------------------------------------------------------------------------
// TAGGING
// ---------------------------------------------------------------------------------
$('ul.tags').each(function() {
$(this).children('li:gt(4)').hide();
$(this).after('&nbsp<p class="show-hide-tags"><a href="#" data-open="0">[More]</a></p>');
});
$('.show-hide-tags a').click(function(e) {
e.preventDefault();
var $this = $(this);
if ($this.attr('data-open') == "0") {
$this.text("[Less]");
$this.attr('data-open', '1');
$this.addClass('.tags');
} else {
$this.text("[More]");
$this.attr('data-open', '0');
$this.addClass('.tags');
}
$('ul.tags').children('li:gt(4)').toggle();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment