Tagged Questions

A multi-line text field, which allows a user to enter a large amount of text.

learn more… | top users | synonyms

52
votes
8answers
41k views

How to get cursor position in textarea?

How do you get the cursor position in text area using JavaScript? For example: This is| a text This should return 7. How would you get it to return the strings surrounding the cursor/selection? eg: ...
39
votes
6answers
51k views

How to impose maxlength on textArea in HTML using JavaScript

I would like to have some functionality by which if I write <textarea maxlength="50"></textarea> <textarea maxlength="150"></textarea> <textarea ...
35
votes
9answers
52k views

Insert text into textarea with jQuery

Hey, I'm wondering how I can insert text into a text area using jquery, upon the click of an anchor tag. I don't want to replace text already in textarea, I want to append new text to textarea. ...
18
votes
4answers
592 views

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 type="text" name="email" placeholder="Enter email"/> I want to use that same ...
18
votes
3answers
6k views

Chrome : make textareas which are not resizable

By default, Chrome makes my textareas resizable. I wish to control this and either make them only vertically resizable, or not at all. How can I achieve this ?
17
votes
3answers
19k views

Implementing a resizable textarea?

How does Stackoverflow implement the resizable textarea? Is that something they rolled themselves or is it a publicly available component that I can easily attach to textareas on my sites? I found ...
16
votes
1answer
346 views

How can I find the cursor location (X/Y, not line/column) in an HTML textarea?

I'd like to display a dropdown list in a textarea to assist the user in typing certain things. You know this from current IDEs as code completion. As you start typing something, a popup will appear ...
16
votes
6answers
15k views

textarea line breaks javascript

I got a textarea in javascript but the problem is that when i make line breaks in it they won't display how can i do this ? i'm getting the value and use a write function but it won't give line ...
16
votes
3answers
16k views

how remove wordwrap from textarea

my simple textarea doesn't show a horizontal bar when text overflows. It wraps text for a new line. So how do I remove wordwrap and display horizontal bar when text overflows?
15
votes
9answers
21k views

How do I make Javascript beep?

I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea.
14
votes
10answers
30k views

Creating a textarea with auto-resize

There was another thread about this, which I've tried. But there is one problem: the textarea doesn't shrink if you delete the content. I can't find any way to shrink it to the correct size - the ...
12
votes
10answers
14k views

How can I clear a textarea on focus?

Im using a simple form with a textarea, when the users clicks onto the textarea I want the contents of the textarea to be cleared. Is this possible?
12
votes
1answer
3k views

Font consistency in a textarea

How do I make a textarea have the same font as everything else on the webpage? Currently I have my code: test.html: <html> <head> <link rel="stylesheet" ...
12
votes
6answers
3k views

What is the best way to emulate an HTML input “maxlength” attribute on an HTML textarea?

An HTML text input has an attribute called "maxlength", implemented by browsers, which if set blocks user input after a certain number of characters. An HTML textarea element, on the other hand, does ...
12
votes
3answers
7k views

Highlight text inside of a textarea

Is it possible to highlight text inside of a textarea using javascript? Either changing the background of just a portion of the text area or making a portion of the text selected?
11
votes
2answers
137 views

CSS Styling text areas like notebook-look

It is possible to style a text area so each row have a dotted underline (like a notebook or a notes-block)? The number of lines should be fixed to lets say 10. Thx
11
votes
9answers
12k views

Limiting number of lines in textarea

I'm looking for a javascript that can limit the number of lines (by line I mean some text ended by user pressing enter on the keyboard) the user is able to enter in textarea. I've found some solutions ...
11
votes
3answers
18k views

HTML Textarea horizontal scroll

I would like to provide a horizontal scroll to a textarea in my HTML page. The scroll should appear without wrapping, if I type a long line without a line break. A few friends suggested using ...
10
votes
3answers
939 views

Why isn't textarea an input[type=“textarea”]?

Why there's an element <textarea> instead of <input type="textarea">?
10
votes
2answers
273 views

my lovely dream : slanted text areas in div

I was wondering if any of you knew if it was possible to make anything looking like this? I know about http://www.infimum.dk/HTML/slantinfo.html but I can't put any text in the slanted areas. Here's ...
9
votes
8answers
393 views

Make a list of values line up with a textarea and labels

Here's some CSS and HTML to make a textarea below a list of data points: form label { width: 140px; float: left; } form ol li { background: #98c8dc; list-style: none; padding: 5px 10px; } ...
9
votes
4answers
4k views

WebView textarea doesn't pop up the keyboard

When I display a WebView, I don't see the soft keyboard popping up. The hard keyboard also doesn't work! What are the usual shortcomings. The code which I use to access the WebView is: package ...
9
votes
2answers
648 views

Highlight text as you type on textarea

I'm trying to create a textarea that will highlight some keywords as the user types in there. I understant textarea can only support plain text and that I have to use a 'rich text' editor in order to ...
8
votes
1answer
97 views

display line number in textarea

I want to display the line number in a textarea like this is possible in jqeury: i looked for answers on SO but i can't find what i want Display current line and column number for a textarea ...
8
votes
1answer
3k views

Any way to disable Firefox 4 textarea-resizing handles?

I have a site with a textarea that is a very specific size; resizing it could make the user think that they can enter more text into the textarea than is possible (it is limited by rows and columns). ...
8
votes
3answers
833 views

Browser based IDE - Textarea with code completion available?

Recently I discovered it's possible to have syntax-highlighting in a <textarea> using JavaScript. Are there Open Source libraries which also support auto completion? I'd like to make a simple ...
8
votes
5answers
944 views

Print when textarea has overflow

I have a form with some text areas that allow a scroll bar when the text exceeds the text box. The user would like to be able to print the screen, and this text is not visible. How do i make all of ...
8
votes
7answers
4k views

Why is textarea filled with mysterious white spaces?

I have a simple text area in a form like so: <textarea style="width:350px; height:80px;" cols="42" rows="5" name="sitelink"> <?php if($siteLink_val) echo $siteLink_val;?> ...
7
votes
3answers
129 views

Is it possible to work out where in a p's text a mouse click event occurred?

I have a <p> containing text. When the <p> is clicked on, I create a <textarea> containing the text from the <p>. Is it possible to calculate where in the <p>'s text ...
7
votes
2answers
168 views

Detect when a user arrives at the end of a readonly textarea in an html page

I need to detect when a user arrives at the end of a readonly textarea in an html page. The textarea will display a very long log for an application. The logs files are so big that is impossible to ...
7
votes
5answers
1k views

jQuery UI Dialog and Textarea Focus Issue

I'm working on a modal comment system using jQuery and jQuery UI, but I'm having some issues with focus. I have a series of divs inside the modal to switch between Login and Add comment, as below: ...
7
votes
4answers
3k views

multiple word Predictive/autocomplete textarea?

I'm lookin for a javascript plugin (for js/any framework) I want to create a textarea that while I type will using a supplied data array, check for predictive matches to the current word im typing ...
7
votes
4answers
6k views

Textarea Selection

The Problem I am working on an in-browser editor within a textarea. I have started looking for some information on dealing with textarea selection and found this jQuery plugin that does some simple ...
6
votes
2answers
262 views

colorize text in textarea with jQuery

i need to colorize part of the text in textarea. Let's say first line in red, second in blue. How to do this? (jQuery)
6
votes
1answer
1k views

jQuery text() function loses line breaks in IE

This is quite a talked about problem on the jQuery forums but I can't figure out a solution for my situation. I have an unordered list with some text elements in them... the user can create new list ...
6
votes
3answers
948 views

Replacing text inside textarea without focus

I want to replace selected text(or insert new text after cursor position if nothing is selected). The new text is entered from another textbox. I want to be able to insert new text without clicking ...
6
votes
5answers
2k views

jQuery plugin that suggests/autocompletes within a textarea

Is there a jQuery plugin that suggests/autocompletes within a textarea? What I want is to have suggested words or autocompleted text proffered to the user in a textarea like the example image below: ...
6
votes
4answers
1k views

Firefox cache textarea value?

I found a strange issue. Open a simple page in Firefox, the code is simple as below: <html> <body> <textarea></textarea> </body> </html> In Firefox, I ...
6
votes
6answers
3k views

Rails — Add a line break into a text area

I got a rails app where I can input a few paragraphs of text into my model. The problem is I dont know how to input any line breaks. I've tried to add " {ln}{/ln} ; {&nbsp} and {br}{/br}" but ...
6
votes
2answers
874 views

TEXTAREAs scroll by themselves (on IE8) every time you type one character

IE8 has a known bug (per connect.microsoft.com) where typing or pasting text into a TEXTAREA element will cause the textarea to scroll by itself. This is hugely annoying and shows up in many ...
6
votes
2answers
9k views

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 different behavior in Firefox3.5 and IE8, and I can't seem to find a way to use ...
6
votes
6answers
2k views

jQuery : Chrome textareas and resize event

Chrome makes textareas resizable by default. How can I attach events to the resizing events for the textareas ? Doing the naive $('textarea').resize(function(){...}) does nothing.
6
votes
7answers
2k views

Consistently sizing a <textarea> under IE, FF, Safari/Chrome

I have a <textarea> that needs to fit into a space whose size is not pre-determined (is a percentage of the screen size). I can get good results if FireFox by setting the regular CSS properties: ...
6
votes
3answers
5k views

Html adding line numbers to textarea

All, I have a textarea as in code below, how to display the line numbers on the left hand side of it. Is there a jquery plugin? <TEXTAREA name="program" id="program" rows="15" cols="65" ...
6
votes
4answers
1k views

Set textarea selection in Internet Explorer

I'm looking for a way to set a selection in a textarea in Internet Explorer. In other browsers, this works just fine: textarea.selectionStart = start; textarea.selectionEnd = end; In IE, I assume I ...
6
votes
3answers
1k views

textarea with syntax / code highlighting

Is there some sort of textarea control equivalent that will properly color syntax as its entered on a webpage, similar to Visual Studio or Eclipse? I'm not looking for an editor like fckedit, i only ...
6
votes
4answers
4k views

Getting cursor position in a Textarea

I am trying to implement Autocomplete in a text area (similar to http://www.pengoworks.com/workshop/jquery/autocomplete.htm). What I am trying to do is when a user enters a specific set of characters ...
5
votes
4answers
56 views

Expanding a textarea depending on how much text it has in it (jquery)

How can I get a textarea to initially have only 1 row, but then when the text reaches the end of the row to add another row, and keep doing this up until a maximum of 5 rows?
5
votes
3answers
140 views

Php tidy and text areas

I am using tidy to clean up and format the output of HTML generated by the twig template engine. I am using the following configuration for tidy: $config = array('indent' => TRUE, 'output-html' ...
5
votes
3answers
164 views

Can I select empty textareas with CSS?

Is there a way that I can select a textarea such that $('#id_of_textarea').val() in jQuery will be ''? I tried using :empty. I saw that CSS provides a way to select empty inputs because the text is in ...

1 2 3 4 5 28