Disable Auto-Complete Fields for Microsoft Edge Browser

We currently use the following script to disable the auto complete feature.


<script>
$(document).ready(function(){
$('textarea, input[type=text], input[type=tel]').attr('autocomplete', 'off');
})
</script>


It works on both Firefox & Chrome browsers, but not on Microsoft Edge.

Does anyone have any scripting that works for Microsoft Edge?

Resolved
11 replies