I want to use HTML5 required attribute for validation purpose and I has my own style of displaying error messages. So, I need to know how to remove default error messages. Is there any way...if there is away can anyone please explain it.....
Asked
Active
Viewed 3,093 times
0
-
The link you provided is not about my answer can please check my question once again..........to tell clearly I want some of my input fields in a form as required and it should not produce the defauld error message......just my form should not submit it's data if the required are empty and it should not through any error messages – Raj Oct 12 '18 at 17:09
1 Answers
2
You can disable front end form validation with novalidate
tag in a form
<form method='post' action='' novalidate>
// Your elements
</form>

Mantas Daračiūnas
- 101
- 3