1👍
✅
You need to turn off the behaviour in the HTML itself, by using novalidate
in the form element.
<form action="whatever" method="POST" novalidate>
...
</form>
Source:stackexchange.com