Spellcheck all inputs

By jes5199 Last update Nov 22, 2006 — Installed 730 times. Daily Installs: 0, 1, 0, 0, 3, 0, 5, 0, 0, 2, 3, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 2, 0, 0, 3, 0
// ==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");
}