Link to home
Start Free TrialLog in
Avatar of myyis
myyis

asked on

autocomplete="off" to input tag

Is there an easy way to place autocomplete="off" to all input tags?
May be using css?
PS: putting it to from tag not works for me.
Thank you
Avatar of Gary
Gary
Flag of Ireland image

Not with CSS
You can easily do it with jquery.

$('input').attr('autocomplete','off');
Avatar of myyis
myyis

ASKER

I went pure javascript, is there an alternative for js?
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of myyis

ASKER

worked! Thank you