I have a text input and a password input which Chrome often asks to remember the info for to autofill. The issue is that it doesn't autofill that information.
How do I get this to work?
It is a single page app, and all request are made via AJAX.
Hence, my inputs are as simple as:
<input type="text" placeholder="email" autocomplete="on" />
<input type="password" placeholder="password" autocomplete="on" />
I thought that the autocomplete="on"
would solve it, but maybe it is because I don't use forms? Probably a bad practice of mine since all I do are Ajax requests, but how would I get this to work?