Bookmarklet to turn off autocomplete on all text fields on page

by Michel Plungjan

HTML

Click-and-drag this to your bookmark menu

<a href="javascript:var x=function() {var inputs = document.getElementsByTagName('input'); for(var i=0, n=inputs.length; i < n; i++) if (inputs[i].type == 'text') inputs[i].setAttribute('autocomplete', 'off');}; void(x());">ACOff</a>