jQuery(document).ready(function($) {
$('.truncate').each(function(){
var truncated = $(this).text().substr(0, 120);
//Updating with ellipsis if the string was truncated
$(this).text(truncated+(truncated.length<120?'':'[...]'));
});
});