Javascript String isEnterKey()

Description

Javascript String isEnterKey()




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

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



PreviousNext

Related