Search code examples
javascriptgoogle-chromebrowserrequire

Can I hide browser require window, when I do not fill input?


I want to make modern form and I have animated inputs which should be required, because if I remove require, the animation will not work so I want to remove the usual browser window which is showing when I do not fill input. Require window which I want to hide.

Can i hide it? If yes, please tell me how.


Solution

  • Yes, you can use the novalidate attribute:

    <form novalidate>
    [...]
    </form>