Hey, 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.
Thankyou.
|
2
|
Hey, 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. Thankyou.
|
||||||||||
|
|
|
From what you have in Jason's comments try:
Edit- To append to text look at below
|
||||||
|
|
|
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:
|
||||||
|
|
|
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
|
||
|
|
|
|
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. |
||
|
|
|
|
I used that and it work fine :)
Remi |
||
|
|