input type email validates without "require" attribute

email, html, javascript, validation

Solution

while submitting form include `novalidate` attribute

For eg:

<form action="demo.html" novalidate>
E-mail: <input autofocus="" placeholder="E-mail" type="email">
<input type="submit">
</form>

Problem

I have input field and I use type `email` to open keyboard with necessary symbols on mobile devices. ``` <input autofocus="" placeholder="E-mail" type="email"> ``` But I don't need that browser validates it while submit. I didn't use `required` attirbute. But Chrome still says "Please include an `@` in the email address." on submit form. Is there any way to stop email validation on submit while using type="email"?

Original source