Google Chrome is actively promoting autocomplete attributes:
Let’s get these added to Unbounce be default (in addition to HTML5 Field Types).
Google Chrome is actively promoting autocomplete attributes:
Let’s get these added to Unbounce be default (in addition to HTML5 Field Types).
I added the attributes with javascript.
//Autocomplete Attributes
document.getElementsByClassName('lp-pom-form')[0].getElementsByTagName('form')[0].autocomplete = 'on';
document.getElementById('phone_number').autocomplete = 'tel-national mobile';
document.getElementById('email').autocomplete = 'email';
document.getElementById('first_name').autocomplete = 'given-name';
document.getElementById('last_name').autocomplete = 'family-name';
However, I am not sure if this will even work since the browser may ignore them if they aren’t there when the document is loaded.
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.