i need to disable default validation of input type='email'

Viewed 387

I need to disable default validation of input type='email' like if I don't write '@' or 'gmail.com' it show me default validation pop up I need to disable it and create my own pop up for show it using html of JS

3 Answers

use "novalidate"

"input type="email" novalidate/"

make it type="text", Why you using the type="email", if you don't need its as "email".

you can change the input type from email to text, after that you can get input data with input Event listener

Related