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
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
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
Use formnovalidate property for input:
<input type="email" formnovalidate="formnovalidate" />