1

In one textbox users are only allowed to enter numeric values less than 99.99.How to set this validation using jquery?

Hector Barbossa
  • 5,506
  • 13
  • 48
  • 70

1 Answers1

3

You could try this jQuery Validation Plugin

http://docs.jquery.com/Plugins/validation

$("#myform").validate({
  rules: {
    field: {
      required: true,
      max: 99.99
    }
  }
});
hunter
  • 62,308
  • 19
  • 113
  • 113