2
votes
1answer
65 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 …
-4
votes
5answers
925 views
Detecting drop into textarea with Javascript
All I need is to be able to detect when text is dropped into a Textarea. I then take that text and do stuff with it and clear the textarea. There may be many of these textareas a …
1
vote
2answers
29 views
textarea removes whitelines?
I have multiline textbox in ASP.NET which renders to a textarea element. I set the Text property to a string like
test\r\n\r\n\r\ntest2
but it only renders like
test
test2
in …
0
votes
1answer
28 views
Grabing text from non java application
Is it possible to grab textarea using java from another non-java application?
Known way is OCR with java.awt.Robot in my opinion is too complex and non effective if grabbed area i …
1
vote
3answers
87 views
How to get number of rows in <textarea >?
With javascript,is it possible?
EDIT
let me be more specific.
I mean:the exact number of rows in a textarea.
Here it's 10 rows in my post.
Anyone knows?
1
vote
4answers
53 views
Dynamicaly Chaning the <textarea > size,style
How can i change the field size diynamicaly?
I have a select field and there are 3 options with different values.
So if the user selects one of them in the you see the values …
0
votes
2answers
38 views
How to calculate the height of text (width fixed)?
I want to create a text box with a fixed width that will fit itself to its current text. So I went ahead and wrote this simple application:
<?xml version="1.0" encoding="utf-8" …
0
votes
3answers
51 views
labels in textarea
<input name="textbox" type="text" value="Click here to type" onfocus="if(this.value=='Click here to type')this.value='';" onblur="if(this.value=='')this.value='Click here to typ …
1
vote
1answer
20 views
Making textarea display the same in WebKit as in other browsers
Webkit decided there weren't enough browser incompatibilities and added 2px of padding to my textarea. However, if I set padding:0 then it looks awful when typed in. Is there a w …
0
votes
3answers
44 views
Setting textAlign to centered on a textArea, trailing spaces aren’t used to determine centering
Maybe I'm doing something wrong but I have a textarea where I've specified textAlign = center and if I type in text with several trailing spaces, it doesn't count the spaces toward …
0
votes
0answers
13 views
How to move Autocomplete list with Cursor moving during typing in textarea ?
Hello , i'm use jquery autoCompelte plugin. and i want to move the list while typing in type text area after the line
3
votes
4answers
933 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 …
0
votes
1answer
13 views
Dynamicdrive formfieldlimiter 2.0 without onkeypress charachter count
The site has two textareas "ta1" and "ta2" whatever is typed in ta1 is then dynamically edited and appears in ta2, underneath the text areas is div with a dynimaclly insterted char …
0
votes
1answer
39 views
JS to work inside a textarea?
I have no experience with using JS to work inside a textarea. I know it's doable as I've seen it.
Links anyone?
0
votes
2answers
46 views
jQuery wrap selected text in a textarea
how can i get the user selected text(just inside textarea) and apply actions to it something like wrap the selection [#bold]selected text[/bold] , thanks
