Home > Net >  How to remove standard validation tooltip after .reportValidity() using css
How to remove standard validation tooltip after .reportValidity() using css

Time:03-28

How to remove standard validation tooltip after .reportValidity() using css

validation tooltip message

Any ideas?

CodePudding user response:

<form novalidate> ... </form>

CodePudding user response:

The keyword is: "standard". It's not possible to modify (this includes hiding) the actual tooltip because it's a browser native implementation, at least, not possible for major browser engines like Blink, Webkit and Gecko, namely Chromium, Safari and Firefox respectively.

References:

  • Related