-
Autofill functionality for website forms
over 8 years ago
-
over 6 years ago
I think it can be done with cookies; of course, user has to go through that annoying 'accept cookies' dialog.. -
-
over 8 years ago
You can use jQuery autocomplete functionality to achieve this:
$('input[name="q"]').autoComplete({ source: function(term, response){ $.getJSON('your/another/website/url', { q:" any data" }, function(data){ response(data); }); } });
using this you can get data from another website database and autocomplete will give you suggestions to fill your input fields.
-
2 Answer(s)