Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Resize Textarea on
- // @namespace Resize Textarea on
- // @description Allows the resize of textareas
- // @include *
- // @version 1
- // @grant none
- // ==/UserScript==
- 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);
- }
- }
Add Comment
Please, Sign In to add comment