Plugin que permite a pessoa apenas digitar números
$.fn.justNumber = function () { this.keypress(function (e) { if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) { return false; } }); }