I use this but autocomplete is not working, any one can help me
<input type="email" id="email" name="email" autocomplete="off">
I use this but autocomplete is not working, any one can help me
<input type="email" id="email" name="email" autocomplete="off">
Try this
<input type="text" id="email" name="email" autocomplete="off" onclick="()=>{
document.getElementById('email').type='email'
}">