Skip to content

Instantly share code, notes, and snippets.

@Frolki1-Dev
Created April 19, 2020 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Frolki1-Dev/049f123fddfa5888c3577f7b7ebbb596 to your computer and use it in GitHub Desktop.
Save Frolki1-Dev/049f123fddfa5888c3577f7b7ebbb596 to your computer and use it in GitHub Desktop.
[HTML] Disable on all forms the autocomplete function
$('form').each(function () {
if(!$(this).is('[autocomplete]') && !$(this).data('allow_autocomplete')) {
$(this).attr('autocomplete', 'off');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment