I have a simple textbox in which users enter number. Does jQuery have a isDigit function that will allow me to show an alert box if users ente
textbox
isDigit
$(document).ready(function () { $("#cust_zip").keypress(function (e) { //var z = document.createUserForm.cust_mobile1.value; //alert(z); if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) { $("#errmsgzip").html("Digits Only.").show().fadeOut(3000); return false; } }); });