Form Validation in html

A good tip with form validation not working with onSubmit function on form element.

Will KimNovember 19, 2019

Code 💻

When there is onSubmit="someFunction(this)" in the the form element:

<form onSubmit="someFunction(this)">
  <!-- Some Code -->
</form>

The form validation doesn't seem to work properly. However, once the onSubmit="someFunction(this)" is gone, the form validation works again.

Invely's