+ By default, only the following elements are validatable: input, select, textarea and [contenteditable]
+ Use this to register your additional/custom elements, for example web components.
+ Example: Register <my-custom-element> to be validatable as well.
+
+ $("#myform").validate({
+ customElements: ["my-custom-element"]
+ });
+
+
+