Skip to content

Instantly share code, notes, and snippets.

@djoeman84
Created October 29, 2013 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djoeman84/7218295 to your computer and use it in GitHub Desktop.
Save djoeman84/7218295 to your computer and use it in GitHub Desktop.
A little bit of js to turn on spell checking on annoying pages that turn it off.
var tareas = document.getElementsByTagName('textarea');
for (var i = 0; i < tareas.length; i++) {
tareas[i].spellcheck = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment