Readmore.js icon indicating copy to clipboard operation
Readmore.js copied to clipboard

Hide readmore if text fits

Open mkotsovoulou opened this issue 4 years ago • 1 comments

Hello, Is there a way to hide the read more when the text in the div fits its height?

mkotsovoulou avatar May 31 '20 19:05 mkotsovoulou

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>' });; } });

JorisLambrechts avatar Dec 03 '21 10:12 JorisLambrechts