Javascript String isEnterKey()
isEnterKey()
String.prototype.isEnterKey = function () { return this == 13; }; Number.prototype.isEnterKey = function () { return this == 13; };