Recently I have created a form with client-side validation and server-side validation. The client-side validation is being done by the HTML 5 validation (email, password, required, pattern, etc.).
Though, for the client side validation I want to USE the HTML 5 validation but disable the 'standard' markup of the error message, for example the bubble of google chrome with the yellow exclamation mark. Instead I want to use my own CSS error markup so I can style the client-side error message the same as the server-side error message.
The question is if there is a way to achieve this? No validation for the form removes the error message but sadly also removes the validation... Other solutions are welcome as well of course!
Thx in advance!