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
With jQuery's validation plugin you could do something like this, assuming that the form is called form and the value to validate is called nrInput
$("form").validate({
errorElement: "div",
errorClass: "error-highlight",
onblur: true,
onsubmit: true,
focusInvalid: true,
rules:{
'nrInput': {
number: true,
required: true
}
});
This also handles decimal values.