My JQuery word excerpts
Excerpts every comments on the page:
<script>
$(function() {
$(“.comment”).each(function() {
str2= $(this).text().split(‘ ‘).slice(0,20).join(‘ ‘);
$(this).html(str2);
})
});
</script>
This helped me:
this does not work:
http://beutelevision.com/blog2/2011/06/17/get-the-first-n-words-with-javascript/