JavaScript Conjunto máximo de comprimento da corda
String.prototype.trimEllip = function (length) {
return this.length > length ? this.substring(0, length) + "..." : this;
}
Friendly Hawk