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,330
  • 13
  • 47
  • 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
  • 60,782
  • 19
  • 111
  • 112