Files
globelus.pl/plugins/jquery-validation/polish/validator.street.js
2024-11-11 15:28:20 +01:00

17 lines
420 B
JavaScript

/* eslint-disable func-names */
/* Validator street */
jQuery.validator.addMethod(
"street",
function(value, element) {
const reg = /^[a-zA-Z0-9ąĄęĘóśŚÓłŁżŻźŹćĆńŃÄäÖöÜüß.\-\s'"]{3,}$/;
return this.optional(element) || reg.test(value);
},
"Wprowadź poprawnie nazwę ulicy."
);
/* Street validator */
jQuery.validator.addClassRules("js-validation-street", {
street: true,
});