Posts by geriel • 1 point
1 post
-
0
votes3
answers5090
viewsA: Limit text length with jQuery
I took a bit of a leap of faith in our friend, I think it might help other people. $(function(){ $(".limit").each(function (i) { var text = $(this).text(); var len = text.length; if (len > 80) {…