We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6a803f commit bd11831Copy full SHA for bd11831
js/contrib/other-validations.js
@@ -32,6 +32,12 @@
32
"regex": /^\d{4}?$/,
33
"alertText": "* Invalid zipcode"
34
};
35
+ $.validationEngineLanguage.allRules["postcodePL"] = {
36
+ // Polish zip codes | Accepts 80-000 format zipcodes
37
+ "regex": /^\d{2}-\d{3}$/,
38
+ "alertText": "* Niepoprawny kod pocztowy, poprawny format to: 12-345"
39
+ };
40
+
41
$.validationEngineLanguage.allRules["postcodeJP"] = {
42
// JP zip codes | Accepts 123 and 123-1234 format zipcodes
43
"regex": /^\d{3}(-\d{4})?$/,
0 commit comments