PHP Classes

File: public/js/plugins/validate/localization/methods_de.js

Recommend this page to a friend!
  Classes of carlos carvalho   COC Framework   public/js/plugins/validate/localization/methods_de.js   Download  
File: public/js/plugins/validate/localization/methods_de.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: COC Framework
Web application development MVC framework
Author: By
Last change:
Date: 7 years ago
Size: 374 bytes
 

Contents

Class file image Download
/* * Localized default methods for the jQuery validation plugin. * Locale: DE */ jQuery.extend(jQuery.validator.methods, { date: function(value, element) { return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value); }, number: function(value, element) { return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); } });