0

How to remove auto fill and autocomplete form

I used autocomplete="off" not work

enter image description here

please help

Pirune
  • 187
  • 1
  • 1
  • 11
  • possible duplicate of [Is there a W3C valid way to disable autocomplete in a HTML form?](http://stackoverflow.com/questions/582244/is-there-a-w3c-valid-way-to-disable-autocomplete-in-a-html-form) – MillaresRoo Oct 12 '14 at 16:51

1 Answers1

1

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.

Hatjhie
  • 1,366
  • 2
  • 13
  • 27