PHP Classes

File: examples/blog/js/jquery-validate/localization/methods_de.js

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/blog/js/jquery-validate/localization/methods_de.js   Download  
File: examples/blog/js/jquery-validate/localization/methods_de.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 385 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); } });