Skip to content

Instantly share code, notes, and snippets.

@acoyfellow
Created March 21, 2024 21:03
Show Gist options
  • Save acoyfellow/9a4abea17b7fad8010fee658640dc422 to your computer and use it in GitHub Desktop.
Save acoyfellow/9a4abea17b7fad8010fee658640dc422 to your computer and use it in GitHub Desktop.
disable autofill
<script>
document.addEventListener("DOMContentLoaded", function() {
var forms = document.getElementsByTagName('form');
for(var i = 0; i < forms.length; i++) {
var fields = forms[i].getElementsByTagName('input');
for(var j = 0; j < fields.length; j++) {fill
fields[j].setAttribute('autocomplete', 'off');
}
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment