In one textbox users are only allowed to enter numeric values less than 99.99.How to set this validation using jquery?
            Asked
            
        
        
            Active
            
        
            Viewed 362 times
        
    1 Answers
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
