9
votes
7answers
1k 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 …
5
votes
3answers
2k 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:
…
5
votes
7answers
652 views
What is your favourite Java Script WYSIWYG Editor component?
I definitifely like the one at stackoverflow, because it's clean and simple. Also the live preview with code/syntax hilighting is really helpful (and motivating).
What is your favourite Javascript …
4
votes
3answers
329 views
How does Google mail achieve rtf in textarea?
I am intended to develop a rich input textarea similar to Google mail. Any ideal or resource to share? Thanks in advance!
4
votes
4answers
943 views
Textarea lags after registering `keydown` events using Javascript
How does one go about attaching a bunch of code to an onkeydown event, but keep entering text into a textarea fast and crisp? Anything more than a couple of IF statements seems to slow it down quite …
3
votes
3answers
152 views
Is ‘width’ applicable to a textarea?
Is the CSS 'width' property applicable to a <textarea>?
In practice, people say that they use it successfully, for example using a rule like this:
textarea
{
width:100%;
}
What's …
3
votes
7answers
2k 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.
3
votes
1answer
226 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" …
3
votes
2answers
202 views
How can I stop Chrome from adding extra line breaks in my textarea?
I have a form in asp that does some javascript error checking them shows a preview of the form information before the user submits it to our database. To enable light formatting before submission we …
3
votes
1answer
80 views
Selective Validation
I have a form that have many text fields and all are being validated, I also added the NiceEdit plugin to be able to format text in my text areas, but it is raising errors like:
A potentially …
3
votes
3answers
1k views
How do you programmatically move the caret of a Flex TextArea to the end?
I'm trying to move the caret in a Flex TextArea to the end after appending some text from my code. I've looked through the reference documentation for TextArea and its underlying TextField but it …
3
votes
4answers
965 views
Getting cursor position in a Textarea
Hi all,
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 …
3
votes
3answers
2k 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 …
3
votes
9answers
2k views
Is there a simple way to make html textarea and input type text equally wide?
Is there a simple way of getting a HTML textarea and an input type="text" to render with (approximately) equal width (in pixels), that works in different browsers?
A CSS/HTML solution would be …
2
votes
1answer
77 views
Is there a profitable way to record user actions in textarea?
I need to send bunch of commands to the server on timer - like:
put(0,"hello")
del(4,1)
put(4," is around the corner")
so I need to monitor and record all of the user input and compile/flush it on …
