Top "Textarea" questions

A textarea is an HTML element (tag) used to create a multi-line plain-text editing field.

Remove all stylings (border, glow) from textarea

I want to remove the stylings from a textarea and leave it all white without any border or glow, if …

css forms textarea border
Can you have multiline HTML5 placeholder text in a <textarea>?

I have ghost text in textfields that disappear when you focus on them using HTML5's placeholder attribute: <input …

html textarea forms placeholder
Show how many characters remaining in a HTML text box using JavaScript

This is my code: function textCounter(field, countfield, maxlimit) { if (field.value.length > maxlimit) { field.value = field.value.substring(0, 160); …

javascript textarea
Get each line from textarea

<textarea> put returns between paragraphs for linebreak add 2 spaces at end indent code by 4 spaces quote by placing &…

php parsing textarea line
Format text in a <textarea>?

Textareas are great because of some built in functionality (scrollbars). How can I format <spans> of text inside …

css html textarea
JavaScript get TextArea input via .value or .innerHTML?

Is it ok to get the value of a textarea element in JavaScript with myTextArea.value or should I use …

javascript textarea innerhtml
How do I set textarea scroll bar to bottom as a default?

I have a textarea that is being dynamically reloaded as user input is being sent in. It refreshes itself every …

javascript css scroll textarea
jQuery textarea append newline behavior

I'm trying to append a strings which end in newlines to a textarea using jQuery. However, different newline tokens show …

jquery textarea newline append behavior
How to center a textarea using CSS?

Forgive me for asking such a simple question, I'm new to both HTML and CSS. Is there an easy way …

html css textarea center
Textarea value not getting posted with form

I'm trying to input a textarea tag when I submit my form: <textarea id="confirmationText" class="text" cols="86" rows ="20" …

html post textarea