Spellcheck all inputs

By jes5199 Last update Nov 22, 2006 — Installed 1,352 times.
// ==UserScript==
// @name           Spellcheck all inputs
// @namespace      http://jes5199.livejournal.com 
// @description    sets spellcheck=true on all input fields! wow, I can't spell!
// @include        *
// ==/UserScript==

inputs = document.getElementsByTagName("input");
for(i = 0; i < inputs.length; i++){
  inputs[i].setAttribute("spellcheck","true");
}