Reputation: 431
I have a tab system (hiding the other tabs) and I found the way to notify the user when he has an error in a different tab.
The only thing I need is to remove the message that appears on the top left of the page "Please fill out this field" because obviously it's not beautiful and it doesn't point to anything
Upvotes: 4
Views: 9518
Reputation: 43594
You can disable the browser validation with novalidate
like the following:
<form action="https://example.com" method="post" novalidate>
<!-- content of the form -->
</form>
Upvotes: 7