• Resolved lucidbeamer

    (@tricktronix)


    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)
  • Plugin Author Alexandru Tapuleasa

    (@talextech)

    Hi,

    Thanks for the tip, we will fix it in next version but we will just add the attribute to the field directly instead of JS.

Viewing 1 replies (of 1 total)
  • The topic ‘autocomplete on email form doesn’t work. here’s a fix’ is closed to new replies.