Skip to content

Instantly share code, notes, and snippets.

@kurrik
Last active August 29, 2015 13:58
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 kurrik/9985844 to your computer and use it in GitHub Desktop.
Save kurrik/9985844 to your computer and use it in GitHub Desktop.
Paste in Chrome addressbar and add "javascript:" to the front to enable resizing of textareas on the page
Array.prototype.forEach.call(document.querySelectorAll('textarea'), function(el) { el.setAttribute('style', 'resize: vertical');});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment