A is an HTML element (tag) used to create a multi-line plain-text editing field.
2
votes
0answers
91 views
Redactor.js maxlength textarea mode
How can I specify a 'maxlength' for the Redactor area to prevent the user to introduce to many characters?
2
votes
0answers
106 views
Tinymce, textarea in my textarea editor
I use TinyMCE.
If I insert in my textarea (editor) another texarea, tinymce considers that the closing tag of this one is concerned and so he closes the editor. All code can be found there after ...
2
votes
0answers
108 views
Flex mx:TextArea cut-off font
Flex mx TextArea cuts off font glyphs near bounds:
This is fixed in spark TextArea, but i need to avoid this mask in mx component.
Any ideas?
2
votes
0answers
583 views
disabled textarea can not scroll in IE8
i was fixing bug about the problem mentioned above, code likes
<textarea style="width: 85%; overflow-y: scroll;" rows="2" name="blog[comment]" id="blog_comment" disabled="disabled" ...
2
votes
0answers
500 views
Spark TextArea's visible text (paragraphs from text Flow)
how can I find what char's are currently visible in sparks text area. I need to know position of first (and last) visible character. OR, even better, witch paragraphs (ParagraphElement's, from ...
2
votes
0answers
130 views
How to find cursor row in TextArea in JS when it has soft-wrapped lines?
I have a textarea which I interact with using jQuery. I have some custom keydown event handlers. To make my interactions smooth I could use a function that returns "current cursor row".
One might ...
2
votes
0answers
696 views
Chrome resets the textarea scroll bar (scrollTop) when focus is called
Chrome (7.0.517.41 beta) (sometimes?) resets a textarea's scroll bar (scrollTop) when you call focus. Does anyone know if this behavior is deliberate, a known bug, or neither?
It seems quite ...
1
vote
0answers
40 views
(web) How to synchronize users concurrently editing a textarea?
I have a TextArea 'TA' in my website where users can edit its text concurrently.
What I have done so far is the following,
I set a global variable 'content' in the server side to capture/monitor ...
1
vote
0answers
72 views
Scroll to top of jQuery-Textarea
I'm trying to add a "change log" to my jQuery mobile Application. In case of an error, the user should have the capability, to see what went wrong. Therefor I've implemented an popup, with a textarea ...
1
vote
0answers
107 views
Internet Explorer 10, auto resize textarea
It may seem like a question which is already answered a thousand times, but the solutions I found neither worked in Internet Explorer 10 nor on Windows-phone 8 (what is more important to me).
My ...
1
vote
0answers
34 views
Alternative for createrange IE8
iv searched around but couldn't find any helpful answer , So this is it:
iv got an iframe which will have some rich text inside and beneath it a text area , the thing is iv got a script that will ...
1
vote
0answers
119 views
Make readonly textarea's height determined by it's content
I would to make a readonly input appear like a pre or div tag with CSS.
I would have thought that it would have been easy to do with a textarea but it seems to be quite the task. I'm able to hide the ...
1
vote
0answers
83 views
No scroll bar with Textarea in processing and controlp5
In the docs for controlp5 it says that a scrollbar will automatically appear when the text exceeds the size of the box, this has not occurred for me, i have also tried .setScrollActive() but still no ...
1
vote
0answers
81 views
jQuery - Synchronizing scrolling of textarea in Opera
I've tried to synchronize scrolling of textarea and div like in example:
<textarea id="text" style="height: 250px" value="Lots of text here"></textarea>
<div id="div" style="height: ...
1
vote
0answers
266 views
Limit text length based on fitting text inside fixed width and height box
I am writting script which limits entered text inside by checking if text fits inside div box which height & width is fixed if not tries to lower font size and then again checks then reached ...