Skip to content

Instantly share code, notes, and snippets.

@bulv1ne
Created May 30, 2013 09:32
Show Gist options
  • Save bulv1ne/5676781 to your computer and use it in GitHub Desktop.
Save bulv1ne/5676781 to your computer and use it in GitHub Desktop.
Read more
if ($('.shorty').height() > 300) {
$('.shorty').css('max-height', '300px');
$('.shorty').css('overflow', 'hidden');
$('.shorty').after('<a href="#" class="readmore">Läs mer</a>');
$('a.readmore').click(function() {
$('.shorty').css('max-height', '');
$(this).remove();
return false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment