active questions tagged textarea - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:04:58Z http://stackoverflow.com/feeds/tag/textarea http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1891444/how-can-i-get-cursor-position-in-a-textarea 2 how can i get cursor position in a textarea? kmunky 2009-12-11T23:03:02Z 2009-12-11T23:36:10Z <p>hi there, how can i get cursor position in a textarea using jQuery? thanks</p> http://stackoverflow.com/questions/1884829/force-spell-check-on-a-textarea-in-webkit 0 Force spell check on a textarea in WebKit sakabako 2009-12-10T23:24:46Z 2009-12-11T23:00:19Z <p>I'm creating a browser based QC/data entry app that will let people edit OCRed files, which naturally have tons of errors. Chunks of data are put in textareas so they can be checked, but the red underlines only appear when the user manually puts the cursor in a misspelled word.</p> <p>Is there a way to force WebKit to add the little red spell check underlines to textareas?</p> http://stackoverflow.com/questions/1885969/why-javascript-editors-use-iframe-to-implement 1 Why javascript editors use iframe to implement? unknown (google) 2009-12-11T05:27:00Z 2009-12-11T10:20:34Z <p>Why do they prefer using iframe and turn on design mode by <code>.contentWindow.document.designMode = "on"</code> instead of directly using textarea?</p> http://stackoverflow.com/questions/1885722/which-value-will-be-sent-by-textarea-and-why 0 Which value will be sent by <textarea> and why? unknown (google) 2009-12-11T04:08:31Z 2009-12-11T05:42:04Z <pre><code>&lt;form&gt; &lt;textarea name="test" value="no"&gt; hi &lt;/textarea&gt; &lt;input type="submit" /&gt; &lt;/form&gt; </code></pre> <p>hi or no,and reason?</p> <p>I ask this question because I see javascript editors use <code>textarea.value = html;</code> to restore the content when submit,why they do this if value attribute is useless?</p> http://stackoverflow.com/questions/879152/how-do-i-make-javascript-beep 3 How do I make Javascript beep? Slim 2009-05-18T18:36:20Z 2009-12-10T22:28:06Z <p>I want to my web page to beep whenever a user exceeds the maximum character limit of my textarea.</p> http://stackoverflow.com/questions/1882890/jquery-insert-text-to-textarea 0 jQuery: Insert text to textarea tarnfeld 2009-12-10T18:06:46Z 2009-12-10T18:13:14Z <p>How can i utilize jQuery to insert text at the cursor into a textarea.</p> http://stackoverflow.com/questions/1587964/wrap-text-inside-fixed-div-with-css-or-javascript 1 Wrap Text inside fixed Div with css or javascript ? spotlightsnap 2009-10-19T10:33:35Z 2009-12-09T03:57:13Z <p>Hi,</p> <p>I have tinymce editor(textarea) and one div. Whenever i type inside the text editor, it shows at the preview div which is (200px) in real time which is looks alike stackoverflow preview. </p> <p>What I want to achieve is, if we type one words without space and if exceed 200px, I want to wrap it to the next line. </p> <p>I tried to find it and I didn't find the solution yet. I tried this solution which i found here</p> <pre><code>.preview_desc { word-wrap: break-word; /* IE&gt;=5.5 */ white-space: pre; /* IE&gt;=6 */ white-space: -moz-pre-wrap; /* For Fx&lt;=2 */ white-space: pre-wrap; /* Fx&gt;3, Opera&gt;8, Safari&gt;3 */ } </code></pre> <p>It doesn't work well in IE7. It added the left and right space. So my div become so wide like the following image </p> <p><a href="http://img38.imageshack.us/img38/2650/ie7g.jpg" rel="nofollow">http://img38.imageshack.us/img38/2650/ie7g.jpg</a></p> <p>In IE8, which is correct looks is like this.</p> <p>img35.imageshack.us/img35/3915/ie8a.jpg (Please add http:// and view)</p> <p>Opera 10 is not totally working also.</p> <p>And then I have line count js also. Which is</p> <pre><code>var height = document.getElementById('divpreview').clientHeight; var lines = Math.round(height / 10); document.getElementById('lines').innerHTML = lines; if(document.getElementById('divpreview').innerHTML == "") { document.getElementById('lines').innerHTML = 0; } </code></pre> <p>If we use the above css code, it starting count from line 2 in all browsers except IE8 and 7.</p> <p>I only want to works on all latest browser which is FF2,3,IE7,IE8,Safari,Chrome,Opera (latest).</p> <p>Please help me out. Thanks.</p> http://stackoverflow.com/questions/1855909/jquery-fade-effect-on-form-input-focus 0 Jquery Fade Effect On Form Input Focus JCHASE11 2009-12-06T17:12:50Z 2009-12-06T17:30:11Z <p>this question is similar to my previous hover question (<a href="http://stackoverflow.com/questions/1851141/converting-css-hover-to-jquery-hover">http://stackoverflow.com/questions/1851141/converting-css-hover-to-jquery-hover</a>) but the answer will be different because it involves a click function and two bgs.</p> <p>I am building a contact page, and when the user clicks on one of the input fields, I want the background of the input to fade from one bg to another. You can see it here: <a href="http://vitaminjdesign.com/contact.html" rel="nofollow">Contact Page</a></p> <p>I currently have added this code to make most of the inputs fade on click, but the textarea wont work:</p> <pre><code>&lt;script type="text/javascript"&gt; if(window.jQuery){jQuery(function(){ (function(){ jQuery('input.name').bind('focus', function(event, ui){var target = jQuery('input.name'); target.animate({'backgroundColor':'#b1b1b1'},250,'linear')});})(); (function(){ jQuery('input.name').bind('blur', function(event, ui){var target = jQuery('input.name'); target.animate({'backgroundColor':'#CFD2D2'},250,'linear')});})(); (function(){ jQuery('input.email').bind('focus', function(event, ui){var target = jQuery('input.email'); target.animate({'backgroundColor':'#b1b1b1'},250,'linear')});})(); (function(){ jQuery('input.email').bind('blur', function(event, ui){var target = jQuery('input.email'); target.animate({'backgroundColor':'#CFD2D2'},250,'linear')});})(); (function(){ jQuery('input.website').bind('focus', function(event, ui){var target = jQuery('input.website'); target.animate({'backgroundColor':'#b1b1b1'},250,'linear')});})(); (function(){ jQuery('input.website').bind('blur', function(event, ui){var target = jQuery('input.website'); target.animate({'backgroundColor':'#CFD2D2'},250,'linear')});})(); (function(){ jQuery('input.area').bind('focus', function(event, ui){var target = jQuery('input.area'); target.animate({'backgroundColor':'#b1b1b1'},250,'linear')});})(); (function(){ jQuery('input.area').bind('blur', function(event, ui){var target = jQuery('input.area'); target.animate({'backgroundColor':'#CFD2D2'},250,'linear')});})(); })}; &lt;/script&gt; </code></pre> <p>Any ideas on how to do this correctly, and makeing the textarea work?</p> http://stackoverflow.com/questions/1843335/detecting-when-textarea-scroll-has-reached-the-bottom-to-enable-button 0 Detecting when textarea scroll has reached the bottom to enable button Teaman 2009-12-03T22:13:38Z 2009-12-03T22:13:38Z <p>I want to display a license agreement in a scrolling textarea and detect when the user has scrolled to the bottom of the text area, then enable the submit button. Is there a way to do that?</p> http://stackoverflow.com/questions/1836010/html-input-text-cannot-select-text-using-mouse 0 HTML input text cannot select text using mouse unknown (google) 2009-12-02T21:41:04Z 2009-12-02T21:41:04Z <p>I have a HTML page with input text elements and textarea elements. Text typed into these elements can be selected with the mouse cursor. Clicking anywhere on the text value places cursor in that location. </p> <p>In some cases, the mouse functions stop working. Cannot use the mouse to place cursor or to highlight/select text. </p> <p>So far, I have been able to eliminate javascript interaction as a possible cause. The misbehaving elements are deep inside div/span hierarchy (5-6 deep), moving the same element outside the div nesting, fixes the mouse functions. </p> <p>Anyone has ideas what could be the cause?</p> <p>Thanks</p> <p>Abhi</p> http://stackoverflow.com/questions/1822788/text-replacing-with-js -2 Text replacing with JS Yegor 2009-11-30T22:16:26Z 2009-12-02T18:45:04Z <p>I need to replace text entered in textarea with other characters, that I will call. For example, I need to replace the text, that I will enter to the textarea by clicking some button calls "change text" using JavaScript and it will change, for example, character "a" to "1", "b" to "2", "c" to "3" etc.</p> http://stackoverflow.com/questions/552048/using-xslt-to-output-an-empty-html-textarea-element 2 Using XSLT to output an empty HTML textarea element dthrasher 2009-02-16T02:07:39Z 2009-12-01T10:20:29Z <p>When attempting to output an empty textarea element, the .NET XSLT processor collapses the element to its short form. Instead of this:</p> <pre><code>&lt;textarea id="blah" name="blah"&gt;&lt;/textarea&gt; </code></pre> <p>I get this:</p> <pre><code>&lt;textarea id="blah" name="blah"/&gt; </code></pre> <p>Which causes many web browsers (including IE and Firefox) to render the rest of the page as if it were the <em>contents</em> of the textarea. <strong>This sucks.</strong></p> <p>I can force the XSLT processor to output both the opening and closing textarea tags if I place something in between like a non-breaking space. But that means I have to do more parsing and validation on the client side to tell when the textarea is "truly" empty. I also have to use JavaScript to remove the extra space so that users don't begin their comments with a blank space.</p> <p>Does anyone know of a way to force the XSLT processor to render both the opening and closing tags <em>without</em> having to insert dummy content?</p> http://stackoverflow.com/questions/1821882/javascript-help 0 JavaScript Help Joe 2009-11-30T19:29:39Z 2009-11-30T19:32:22Z <p>I am completely stuck on how to finish this problem... the question goes...</p> <p>Write a function quality Points that inputs a student’s average and returns 4 if the stu¬dent's average is 90–100, 3 if the average is 80–89, 2 if the average is 70–79, 1 if the average is 60–69 and 0 if the average is lower than 60. Incorporate the function into a script that reads a value from the user.</p> <p>...and the code I have so far is...</p> <pre><code>&lt;form name="myform"&gt; &lt;script language=javascript&gt; function output() { if (condition) { document.myform.txtImput } } &lt;/script&gt; &lt;table border="1"&gt; &lt;tr&gt; &lt;td&gt;Enter Grade&lt;/td&gt;&lt;td&gt; &lt;textarea name=txtImput rows="1" cols="20"&gt;&lt;/textarea&gt; &lt;/td&gt;&lt;td&gt;&lt;input name=txtOutput type=button value=Get Quality Points onClick=output()&gt;&lt;/button&gt;&lt;/td&gt; &lt;/tr&gt;&lt;tr&gt; &lt;td&gt;Quality Points&lt;/td&gt;&lt;td&gt; &lt;textarea name=txtOutput rows="1" cols="20" READONLY&gt;&lt;/textarea&gt; &lt;/td&gt;&lt;td&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; </code></pre> <p>I can do the If..Then statements, but I cannot figure out how to change the values of the text area I have named txtOutput.</p> http://stackoverflow.com/questions/1813208/how-to-wrap-textarea 0 how to wrap textarea neurosis psychosis 2009-11-28T17:51:06Z 2009-11-28T17:53:00Z <p>how to wrap the text in textarea so that word will not be overflown to rightside and written in new line.</p> http://stackoverflow.com/questions/1811257/how-to-format-text-in-flex-textarea 0 How to format text in flex TextArea? zdmytriv 2009-11-28T01:33:25Z 2009-11-28T07:20:21Z <p>TextArea in flex doesn't render <code>&lt;TABLE&gt;&lt;/TABLE&gt;</code>.</p> <p>I want to display text in textarea in two columns. </p> <pre><code>Column1 Column2 Row1: Data, data, data row1 Row2 longer: Data, data, data row2 </code></pre> <p>Depending on text width in Column1 text in Column2 will be shifted. So all rows in Column2 are going to be aligned. How can I do this without html <code>&lt;table&gt;</code>?</p> http://stackoverflow.com/questions/1801776/jquery-auto-expanding-textareas-acting-strange 0 jQuery auto expanding textareas acting strange Adam 2009-11-26T05:53:38Z 2009-11-26T06:13:22Z <p>I have tried various different jQuery autogrow/expand text area plugins, and they all work good and well on the demo page but for some reason whenever I implement them into my existing site, they act very strange, this is what is happening: </p> <p>It works great, if you're manually typing in text and hitting enter after every line, however, if I copy and paste a large block of text in, for some reason it consistently chops about 30% off the end, and it's simply cut off, no scroll bar, just cut off.</p> <p>Even if i refresh the page (with the text staying in there) it still cuts it off. I'm guessing some JS/CSS is conflicting but I have no clue what it could be!</p> http://stackoverflow.com/questions/1785535/flex-how-to-change-caret-text-cursor-in-editable-text-area-text-input 0 Flex: How to change caret (text cursor) in editable text area / text input raj.tiwari 2009-11-23T19:54:55Z 2009-11-24T00:38:20Z <p>I need to put together an editable text area that has a custom caret (cursor) which is different from the default blinking vertical line. </p> <p>Is the caret a "skinnable" property of text input?</p> <p>Please note that I am not asking about the mouse pointer cursor which can be set using the CursorManager.</p> <p>Thanks. -Raj</p> http://stackoverflow.com/questions/633370/flex-modifying-text-area 0 Flex: Modifying Text Area jejad 2009-03-11T04:48:36Z 2009-11-23T14:00:12Z <p>I'm making a text editor using Text Area. Which user can change font size, family and etc.<br /> This is my code on as:</p> <pre><code> private function ChangeFont(event: Event):void { var mySelectedTextRange:TextRange = new TextRange(thistxtarea,true, thistxtarea.selectionBeginIndex, thistxtarea.selectionEndIndex); mySelectedTextRange.fontSize = int(cmbbxFntSze.text); thistxtarea.setFocus(); } </code></pre> <p>i have this combo box to enter desired font size:</p> <pre><code>&lt;mx:ComboBox x="78" y="8" width="114" id="cmbbxFntFam" close="ChangeFont(event)"&gt;&lt;/mx:ComboBox&gt; </code></pre> <p>How do I change font properties if the text inside is not highlight? For example I position the mouse pointer on last index of text inside my Text Area and I select on my combo box the desired font size. The following font size of letter that inputed in Text Area should be the selected font size on combo box. The code that I post works only if I highlight the desired text.</p> http://stackoverflow.com/questions/1729100/is-there-a-profitable-way-to-record-user-actions-in-textarea 2 Is there a profitable way to record user actions in textarea? shaman.sir 2009-11-13T13:02:44Z 2009-11-22T15:39:49Z <p>I need to send bunch of commands to the server on timer - like: </p> <pre><code>put(0,"hello") del(4,1) put(4," is around the corner") </code></pre> <p>so I need to monitor and record all of the user input and compile/flush it on the timeout (idle), something like macros.</p> <p>I can record all things happening <code>onKeyUp</code>/<code>onKeyDown</code>/<code>onMouseDown</code>/<code>onMouseUp</code> using textarea cursor position and keys information (and make it cross-browser <em>some time</em> later) but I can't handle things like pasting using mouse right button and selecting 'Paste' or pasting from the menu (I can handle <code>onChange</code>, but I will have no information is it pasted or already recorded as pressed keys and it fires only after focus change). Even pasting from context menu fires some useful info, but the menu from the browser is the only thing, giving nothing for javascript.</p> <p>Is there any plugin for jQuery or something like that and do I really have no other ways to implement it without comparing current-document and document-a-second-before?</p> <p><strong>Upd.:</strong> There are events for handling <code>cut</code>/<code>copy</code>/<code>paste</code>: <a href="http://www.quirksmode.org/dom/events/cutcopypaste.html" rel="nofollow">http://www.quirksmode.org/dom/events/cutcopypaste.html</a> , but what about the <code>undo</code> one?</p> <p>P.S. I will show a macro-recording code when I'll finish, if someone really needs it. And to finish it properly, I just need the <code>undo</code> handling possibility. Current version is here: <a href="http://code.google.com/p/sametimed/source/browse/WebContent/module-editor.js" rel="nofollow">http://code.google.com/p/sametimed/source/browse/WebContent/module-editor.js</a>, look for <code>compileCommands</code> method.</p> http://stackoverflow.com/questions/472498/detecting-drop-into-textarea-with-javascript -4 Detecting drop into textarea with Javascript sam 2009-01-23T10:41:24Z 2009-11-20T21:11:05Z <p>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 and very high UI expectations, so polling is a last resort.</p> <p>For IE, "onfocus" does the trick, since this event is fired after the user drops stuff into the textarea.</p> <p>For Firefox, I can't find an event that works. I've tried onmouseup and onchange.. don't know what else to try from there. I'd hate to have to poll the textarea for content. Help much appreciated. Thanks.</p> <p>Edit: For clarification, "dropped" means the user selects text (usually) from the page, but it doesn't matter where, drags it, and drops it into the textarea. This is not the same as Ctrl+V, or right click pasting (which take two different methods of detection, BTW), or (obviously) typing into the textarea. Specifically, it is the "drop" aspect of drag and drop. I really don't know how else to phrase it.</p> <p>I feel this question was stated rather accurately. To humor me, assume that I meant any of the other operations on a textarea that you all have chosen to share. If I meant "pasting", don't you think I would have mentioned <em>something</em> about pasting in the title or content of my question? Same goes for <em>typing</em> in a textarea. But, perhaps, you all just don't know me well enough to know that I type what I mean, rather than mistakingly typing things only somewhat related to what I mean.</p> http://stackoverflow.com/questions/1755617/textarea-removes-whitelines 1 textarea removes whitelines? Nyla Pareska 2009-11-18T12:22:20Z 2009-11-20T10:10:29Z <p>I have multiline textbox in ASP.NET which renders to a textarea element. I set the Text property to a string like</p> <pre><code>test\r\n\r\n\r\ntest2 </code></pre> <p>but it only renders like</p> <pre><code>test test2 </code></pre> <p>in the textarea while I expected something like this to be rendered:</p> <pre><code>test test2 </code></pre> <p>It seems the textarea eats the whitelines. How to overcome this?</p> http://stackoverflow.com/questions/1762463/grabing-text-from-non-java-application 0 Grabing text from non java application holub 2009-11-19T10:51:09Z 2009-11-19T10:54:57Z <p>Is it possible to grab textarea using java from another non-java application?</p> <p>Known way is OCR with java.awt.Robot in my opinion is too complex and non effective if grabbed area is in the minimized window.</p> <p>P.S. Linux environment is preferred but not mandatory for solution.</p> http://stackoverflow.com/questions/1760629/how-to-get-number-of-rows-in-textarea 1 How to get number of rows in <textarea >? Mask 2009-11-19T03:07:42Z 2009-11-19T06:05:54Z <p>With javascript,is it possible?</p> <p><strong>EDIT</strong></p> <p>let me be more specific.</p> <p>I mean:the exact number of rows in a textarea.</p> <p>Here it's 10 rows in my post.</p> <p>Anyone knows?</p> http://stackoverflow.com/questions/1748751/dynamicaly-chaning-the-textarea-size-style 1 Dynamicaly Chaning the <textarea > size,style streetparade 2009-11-17T13:06:57Z 2009-11-18T07:40:07Z <p>How can i change the field size diynamicaly? <br> 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. But how can i change the size that the values from option field fits in the </p> <pre><code>function changeText() { var select = document.getElementById("surl"); var textfield = document.getElementById("turl"); var bold = document.getElementById("burl"); var link = document.getElementById("linkText"); if(bold.style.display == "none") bold.style.display = ""; //if(link.innerHtml) bold.innerHtml = select.value; //if(link.innerHTML !="") link.innerHTML= select.value; textfield.value = select.value; } &lt;b&gt;Sample: &lt;/b&gt;&lt;select id="surl" onchange="changeText();" style="visibility: visible;" name="linkText"&gt; &lt;option&gt;Select LinkText&lt;/option&gt; &lt;option value="&lt;a href='http://www.doesntexist.dsdsd/'&gt;Want sign? http://www.doesntexist.dsdsd&lt;/a&gt;"&gt; Variant1 &lt;/option&gt; &lt;option value="&lt;a href='http://www.doesntexist.dsdsd/'&gt;Wanna killme? http://www.doesntexist.dsdsd&lt;/a&gt;"&gt; Variant 2 &lt;/option&gt; &lt;/select&gt; &lt;br /&gt; &lt;div class="succes"&gt; &lt;span id="burl" style="display: none"&gt;&lt;br /&gt;&lt;a id="linkText" href="http://www.doesntexist/"&gt;&lt;/a&gt;&lt;/span&gt; &lt;/div&gt; &lt;/p&gt; &lt;p&gt; &lt;textarea id="turl" style=""&gt; &lt;a href="http://www.doesntexist"&gt;text...&lt;/a&gt; &lt;/textarea&gt; &lt;/p&gt; </code></pre> http://stackoverflow.com/questions/1753659/how-to-calculate-the-height-of-text-width-fixed 0 How to calculate the height of text (width fixed)? Eran Betzalel 2009-11-18T04:33:34Z 2009-11-18T06:06:14Z <p>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:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="load();"&gt; &lt;mx:Script&gt; &lt;![CDATA[ private function load():void { text1.height = text1.textHeight; } ]]&gt; &lt;/mx:Script&gt; &lt;mx:TextArea id="text1" x="10" y="10" width="352" height="196" wordWrap="true" text="Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test Test"/&gt; &lt;/mx:Application&gt; </code></pre> <p>Alas, the height of <code>textHeight</code> is twice the height I needed.</p> <p>How come? and how can it be fixed?</p> http://stackoverflow.com/questions/1746779/labels-in-textarea 0 labels in textarea Nimbuz 2009-11-17T05:25:20Z 2009-11-17T18:54:03Z <pre><code>&lt;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 type';"&gt; </code></pre> <p>..onfocus/onblur work on textfields but not textarea elements. Is there any workaround, using jQuery maybe?</p> http://stackoverflow.com/questions/1745331/making-textarea-display-the-same-in-webkit-as-in-other-browsers 1 Making textarea display the same in WebKit as in other browsers Ben McCann 2009-11-16T22:43:09Z 2009-11-16T22:48:46Z <p>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 way I can make it the same size without destroying the display? (It seems like -webkit-padding-start:2px and -webkit-padding-start:2px will fix the left and right, but there are not corresponding properties for the top and bottom)</p> <p>Also, there's some type of little handle in the bottom right corner to allow resizing of the textarea. Any idea what CSS property might turn this off?</p> http://stackoverflow.com/questions/1541688/setting-textalign-to-centered-on-a-textarea-trailing-spaces-arent-used-to-deter 0 Setting textAlign to centered on a textArea, trailing spaces aren't used to determine centering Shizam 2009-10-09T03:46:46Z 2009-11-13T09:13:33Z <p>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 towards centering the text. If I add another character to the text (after all the spaces) it then all of a sudden centers the line, is this a bug, can anybody think of a good solution?</p> <p>To replicate:<br> -Create a textArea<br> -Set textAlign=center<br> -Run the application and type in something like 'FOOBAR' followed by 10 spaces, note that it centers FOOBAR but stops centering the text while you're typing the spaces<br> -Now type another string like 'WTF', now it'll all of a sudden center the whole line.</p> http://stackoverflow.com/questions/1720635/how-to-move-autocomplete-list-with-cursor-moving-during-typing-in-textarea 0 How to move Autocomplete list with Cursor moving during typing in textarea ? dragger 2009-11-12T08:01:10Z 2009-11-12T08:01:10Z <p>Hello , i'm use jquery autoCompelte plugin. and i want to move the list while typing in type text area after the line</p> http://stackoverflow.com/questions/341233/getting-cursor-position-in-a-textarea 3 Getting cursor position in a Textarea Mordy 2008-12-04T16:34:42Z 2009-11-12T00:59:08Z <p>Hi all,</p> <p>I am trying to implement Autocomplete in a text area (similar to <a href="http://www.pengoworks.com/workshop/jquery/autocomplete.htm" rel="nofollow">http://www.pengoworks.com/workshop/jquery/autocomplete.htm</a>).</p> <p>What I am trying to do is when a user enters a specific set of characters (say insert:) they will get an AJAX filled div with possible selectable matches.</p> <p>In a regular text box, this is of course simple, but in a text area I need to be able to popup the div in the correct location on the screen based on the cursor.</p> <p>Can anyone provide any direction?</p> <p>Thanks, -M</p>