Reputation: 2661
What I want to do is avoid browsers to show a tooltip when I try to submit a form that contains empty inputs. I'm validating with a plugin, and when I don't want to have two tooltips saying basically the same thing.
Upvotes: 0
Views: 98
Reputation: 6274
since there is a custom validation method its better to simply remove the required
attribute from the input
s rather having required
inputs and a novalidate
form.
a simple novalidate
form does not guarantee compatibility with whatever the custom validation is and is just adding unnecessary complexity.
Upvotes: 0
Reputation: 3712
On the form you can add the novalidate
attribute:
<form novalidate>
<input required/>
</form>
Upvotes: 1