Answers for "jquery validate num"

1

jquery is numeric

according to http://api.jquery.com/jQuery.isNumeric/

it's :jQuery.isNumeric(value)

so, it should be $.isNumeric($("#EmpNum").val())
Posted by: Guest on March-19-2021
0

number validation in jquery

$( "#myform" ).validate({
  rules: {
    field: {
      required: true,
      number: true
    }
  }
});
Posted by: Guest on March-21-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language