How to remove auto fill and autocomplete form
I used autocomplete="off" not work
please help
How to remove auto fill and autocomplete form
I used autocomplete="off" not work
please help
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.