$(".gl_ld p").each(function() {
var
maxwidth = 40;
if
($(
this
).text().length > maxwidth) {
$(
this
).text($(
this
).text().substring(0, maxwidth));
$(
this
).html($(
this
).html() +
"…"
);
}
});