How to get Chrome to autofill inputs [SOLVED]

Hello!

I have generic input forms that I would like Chrome to autofill them. Such as first name & email.

While using the ID attribute “name” and “email” on the element works; “first name”, “fname” or “given-name” does not.

Is there a way specify the autocomplete attribute as suggested here?

Thanks.

After some research, using the Toolbox plugin to run a JavaScirpt adding the attribute and matching to the element ID solves the problem.

$('#g-name').attr("autocomplete","given-name");

7 Likes

This topic was automatically closed after 70 days. New replies are no longer allowed.