About 12,200,000 results
Open links in new tab
  1. css - Format text in a <textarea>? - Stack Overflow

    Oct 11, 2012 · Textareas are great because of some built in functionality (scrollbars). How can I format &lt;spans&gt; of text inside of the &lt;textarea&gt;?

  2. How to change the Content of a <textarea> with JavaScript

    Apr 26, 2017 · How would I change the content of a <textarea> element with JavaScript? I want to make it empty.

  3. html - How can I use a textarea as an input? - Stack Overflow

    Oct 8, 2014 · Would it be possible to use only a textarea from beginning and define its size like an inbutbox? If you get more chars, just increase the textarea to a normal size.

  4. Creating a textarea with auto-resize - Stack Overflow

    Jan 18, 2009 · Learn how to create a textarea that automatically resizes based on the content entered.

  5. Should I size a textarea with CSS width / height or HTML cols / …

    Oct 9, 2010 · The size of a textarea can be specified by the cols and rows attributes, or even better; through CSS' height and width properties. The cols attribute is supported in all major …

  6. javascript - Textarea Auto height - Stack Overflow

    Check this similar topics too: Autosizing textarea using Prototype Textarea to resize based on content length Creating a textarea with auto-resize

  7. javascript - Auto-expanding textarea - Stack Overflow

    I'm trying to do a simple auto-expanding textarea. This is my code: textarea.onkeyup = function () { textarea.style.height = textarea.clientHeight + 'px'; } But the textarea just keeps growing

  8. Why is textarea filled with mysterious white spaces?

    Feb 5, 2010 · 113 Well, everything between <textarea> and </textarea> is used as the default value for your textarea box. There is some whitespace in your example there. Try to eliminate …

  9. How to add default value for html <textarea>? - Stack Overflow

    May 15, 2011 · Learn how to set a default value for an HTML <textarea> element using various methods and examples on this Stack Overflow page.

  10. Textarea to resize based on content length - Stack Overflow

    Jun 15, 2009 · I need a textarea where I type my text in the box, it grows in length as needed to avoid having to deal with scroll bars and it need to shrink after delete text! I didn’t want to go …