diff --git a/entries/validate.xml b/entries/validate.xml index 640ed6c..abff4dc 100644 --- a/entries/validate.xml +++ b/entries/validate.xml @@ -538,6 +538,19 @@ + + + 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"]
+					});
+					
+
+ +