var txtarea = document.getElementsByTagName('textarea');

for (var i = 0, n = txtarea.length; i < n; i++) {

  if (txtarea[i].style.resize == 'none') {

    txtarea[i].style.resize = 'both';

  }

  if (txtarea[i].getAttribute('spellcheck') == false) {

    txtarea[i].setAttribute('spellcheck', true);

  }

}