input maxl length js code example
Example 1: how to specify amout of letters in inputfield in css
<input maxlength="25" placeholder="name" />
Example 2: javascript set max length of string
String.prototype.trimEllip = function (length) {
return this.length > length ? this.substring(0, length) + "..." : this;
}