Readmore.js
Readmore.js copied to clipboard
Hide readmore if text fits
Hello, Is there a way to hide the read more when the text in the div fits its height?
I just loop over all the elements and check the height:
$('.text').each(function(){ if($(this).height() > 100){ $(this).readmore({ speed: 75, collapsedHeight: 100, lessLink: '<a href="#">Read less</a>' });; } });