Created
October 29, 2013 16:45
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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