JavaScript set la longueur maximale de la chaîne
String.prototype.trimEllip = function (length) {
return this.length > length ? this.substring(0, length) + "..." : this;
}
Friendly Hawk