Pirune
Pirune

Reputation: 195

How to remove auto fill and autocomplete form

How to remove auto fill and autocomplete form

I used autocomplete="off" not work

enter image description here

please help

Upvotes: 0

Views: 159

Answers (1)

Hatjhie
Hatjhie

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

Related Questions