autocomplete on email form doesn’t work. here’s a fix
-
To get autocomplete to work on the email field I had to add this to the Custom HTML script in advanced.
It selects the input field with the name: ‘signals_email’ and then adds an attribute: autocomplete=’email’
<script> const emailInput = document.querySelector('input[name="signals_email"]'); emailInput.setAttribute('autocomplete', 'email'); </script>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘autocomplete on email form doesn’t work. here’s a fix’ is closed to new replies.