diff --git a/public/akaunting-js/generalAction.js b/public/akaunting-js/generalAction.js index f76732771..db1d67d21 100644 --- a/public/akaunting-js/generalAction.js +++ b/public/akaunting-js/generalAction.js @@ -438,3 +438,9 @@ document.querySelectorAll('[data-index-icon]').forEach((defaultText) => { //disable/enable icons ejected from data-truncate-marquee //margue animation for truncated text + +//disable autocomplete for all form elements +document.querySelectorAll('input, textarea, select, textarea').forEach((element) => { + element.setAttribute('autocomplete', 'off'); +}); +//disable autocomplete for all form elements