Top "Textarea" questions

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

Using jQuery, how do I force a visitor to scroll to the bottom of a textarea to enable the submit button?

I have a registration form which contains a read-only textarea. I want to require any visitor to scroll to the …

jquery validation textarea scroll form-submit
How do I fix inconsistent Textarea bottom margin in Firefox and Chrome?

I'm trying to eliminate the extra bottom margin that both FF and Chrome seem to give to Textareas. Surprisingly IE …

css html cross-browser textarea
Is there a way to dynamically change the Flutter TextField's maxLines?

I have a TextField like this: new Flexible( fit: FlexFit.loose, child: new Container( alignment: FractionalOffset.topLeft, child: new TextField( …

textarea textfield flutter
Rendering a <textarea /> using data annotations

I'd like to render a text area for one of the fields in my model. I've tried applying [DataType(DataType.…

asp.net-mvc asp.net-mvc-4 textarea data-annotations multiline
Get value of input text with react-bootstrap

I try to get value into a input text and add it to a text area with react-bootstrap. I know …

javascript reactjs textarea react-bootstrap textinput
Does Angular Material have built in autosizing for textareas?

I am able to import MatTextareaAutosize from Angular Material, but I see nothing about it in the docs and have …

angular textarea angular-material autosize
Preventing "Enter" from submitting form, but allow it on textarea fields (jQuery)

$(window).keydown(function(event){ if(event.keyCode == 13) { event.preventDefault(); return false; } }); The above is the code I got which effectively …

jquery html textarea submit keystroke
How to make Nicedit only affect one textarea on a page as oposed to every textarea on the page

I've been trying to use nicedit (http://nicedit.com/) on a form for my website (which I am using to …

javascript textarea nicedit
HTML5 textarea character limit attribute

Is there an HTML5 attribute to set the maximum amount of characters in a textarea or other form? I want …

forms html textarea character-limit
What is the resizing option for inputTextarea component in JSF

I am using JSF2.0 and I have an inputTextArea component and want to prevent the enduser from resizing it.How …

jsf primefaces textarea resizable