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.
|
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. |
|||||||||||||
|
|
From what you have in Jason's comments try:
Edit- To append to text look at below
|
|||||||||
|
|
I like the jQuery function extension. However, the this refers to the jQuery object not the DOM object. So I've modified it a little to make it even better (can update in multiple textboxes / textareas at once).
This works really well. You can insert into multiple places at once, like:
|
|||||||||||||||||||||
|
|
I use this function in my code:
$.fn.extend({
insertAtCaret: function(myValue) {
if (document.selection) {
this.focus();
sel = document.selection.createRange();
sel.text = myValue;
this.focus();
}
else if (this.selectionStart || this.selectionStart == '0') {
var startPos = this.selectionStart;
var endPos = this.selectionEnd;
var scrollTop = this.scrollTop;
this.value = this.value.substring(0, startPos)+myValue+this.value.substring(endPos,this.value.length);
this.focus();
this.selectionStart = startPos + myValue.length;
this.selectionEnd = startPos + myValue.length;
this.scrollTop = scrollTop;
} else {
this.value += myValue;
this.focus();
}
}
})
It's not 100% mine, I googled it somewhere and then tuned for mine app. Usage: |
|||||||||||||||||
|
|
have you tried:
not sure about autohighlighting, though. EDIT: To append:
|
|||||||||||
|
|
Hej this is a modified version which works OK in FF @least for me and inserts at the carets position
|
|||||
|
|
I know this is an old question but for people searching for this solution it's worth noting that you should not use append() to add content to a textarea. the append() method targets innerHTML not the value of the textarea. The content may appear in the textarea but it will not be added to the element's form value. As noted above using:
will work fine. |
|||
|
|
|
this one allow you "inject" a piece of text to textbox, inject means: appends the text where cursor is.
And you can use it like this:
Funny and have more sence when we have "Insert Tag into Text" functionality. works in all browsers. |
|||||||||||||
|
|
What you ask for should be reasonably straightforward in jQuery-
The best way that I can think of highlighting inserted text is by wrapping it in a span with a CSS class with However, There are plenty of free WYSIWYG HTML/Rich Text editors available on the market, I'm sure one will fit your needs
|
|||
|
|
|
I used that and it work fine :)
Remi |
|||
|
|
It works good for me in Chrome 20.0.11
|
|||
|
|
|
I think this would be better
|
|||
|
|
|
If you want to append content to the textarea without replacing them, You can try the below
According to your scenario it would be
|
|||
|
|