php - set form autocomplete off in codeigniter global -
in codeigniter module. have around 75 pages forms, need add auto complete attributes globally. example, set autocomplete off attribute on view pages
i think, need use jquery in less complex manner.
you can use code:
$('form').attr('autocomplete', 'off');
it assign autocomplete attribute forms.
Comments
Post a Comment