I have a form with html5 validation ("required", etc.) attributes attached.
Is there a way to trigger the appearance of the native validation bubbles/tooltips without simulating "click" on submit buttons of the form ?
I have a form with html5 validation ("required", etc.) attributes attached.
Is there a way to trigger the appearance of the native validation bubbles/tooltips without simulating "click" on submit buttons of the form ?
As said in a comment, you can use the .reportValidity()
method. It is widely supported except for IE, as usual.
You just can't trigger the native browser form validation.