Reputation: 195
How to remove auto fill and autocomplete form
I used autocomplete="off" not work
please help
Upvotes: 0
Views: 159
Reputation: 1365
You could try this assuming you want to remove all of the autocomplete in your form.
$("body").find('input, form').attr('autocomplete', 'off');
Hope it helps.
Upvotes: 1