vote up 2 vote down star
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.

flag

Do you need an HTML WYSIWYG editor? – Daniel A. White Jun 3 at 19:02
If this is the solution - Would prefer to build it in myself, however. Its for a personal blog I'm doing fora friend, so anything that will fit this. – Oliver Stubley Jun 3 at 19:05
so you want to select a text, and whichever one selected, use jquery to populate a textarea, if so where is this text coming from, inputted manually or from an special tag? – TStamper Jun 3 at 19:08
TStamper, I want to be able to click a button, and depending on what is clicked insert text into a textarea. – Oliver Stubley Jun 3 at 19:09
so if you click on a button labeled "bold" you want bold in the textarea? – TStamper Jun 3 at 19:12
show 5 more comments

6 Answers

vote up 3 vote down check

From what you have in Jason's comments try:

$('a').click(function() //this will apply to all anchor tags
{ 
   $('#area').val('foobar'); //this puts the textarea for the id labeled 'area'
})

Edit- To append to text look at below

$('a').click(function() //this will apply to all anchor tags
{ 
   $('#area').val($('#area').val()+'foobar'); 
})
link|flag
Thankyou very much, TStamper! – Oliver Stubley Jun 3 at 19:35
check my answer for a much easier way to append text – Jason Jun 3 at 21:18
@Jason- sorry not true , append expects html data starting with a html element ex: <p – TStamper Jun 3 at 22:47
vote up 5 vote down

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: $('#element').insertAtCaret('text');

link|flag
Does this highlight inserted text also? – Oliver Stubley Jun 3 at 19:11
Nope, but this work better than solution you accepted. – Thinker Jun 3 at 20:30
The solution I accepted is simpler and works fine, thanks. – Oliver Stubley Jun 3 at 21:08
But that solution won't work, when user move his cursor somewhere back :) Anyway, nevermind. – Thinker Jun 3 at 22:14
1  
you use 'this' as both a wrapped set and an element. hmmm .. just tried and it doesn't work w/o edits – Scott Evernden Oct 9 at 22:09
show 2 more comments
vote up 2 vote down

have you tried:

$("#yourAnchor").click(function () {
    $("#yourTextarea").val("your text");
});

not sure about autohighlighting, though.

EDIT:

To append:

$("#yourAnchor").click(function () {
    $("#yourTextarea").append("your text to append");
});
link|flag
Thanks, i'll give it a go, I am new to jQuery so am not aware of all of the easy to use functions. – Oliver Stubley Jun 3 at 19:10
i'm relatively new too. it's fun and super easy once you get the hang of it. Check this out for more reference: docs.jquery.com/Main_Page – Jason Jun 3 at 19:12
Thankyou very much, glad to know I'm not the only one that doesn't fully know jQuery as most people seem to do! – Oliver Stubley Jun 3 at 19:15
vote up 1 vote down

What you ask for should be reasonably straightforward in jQuery-

$(function() {
    $('#myAnchorId').click(function() { 
        var areaValue = $('#area').val();
        $('#area').val(areaValue + 'Whatever you want to enter');
    });
});

The best way that I can think of highlighting inserted text is by wrapping it in a span with a CSS class with background-color set to the color of your choice. On the next insert, you could remove the class from any existing spans (or strip the spans out).

However, There are plenty of free WYSIWYG HTML/Rich Text editors available on the market, I'm sure one will fit your needs

link|flag
vote up 0 vote down

this one allow you "inject" a piece of text to textbox, inject means: appends the text where cursor is.

function inyectarTexto(elemento,valor){
 var elemento_dom=document.getElementsByName(elemento)[0];
 if(document.selection){
  elemento_dom.focus();
  sel=document.selection.createRange();
  sel.text=valor;
  return;
 }if(elemento_dom.selectionStart||elemento_dom.selectionStart=="0"){
  var t_start=elemento_dom.selectionStart;
  var t_end=elemento_dom.selectionEnd;
  var val_start=elemento_dom.value.substring(0,t_start);
  var val_end=elemento_dom.value.substring(t_end,elemento_dom.value.length);
  elemento_dom.value=val_start+valor+val_end;
 }else{
  elemento_dom.value+=valor;
 }
}

And you can use it like this:

<a href="javascript:void(0);" onclick="inyectarTexto('nametField','hello world');" >Say hello world to text</a>

Funny and have more sence when we have "Insert Tag into Text" functionality.

works in all browsers.

link|flag
vote up 0 vote down

I used that and it work fine :)

$("#textarea").html("Put here your content");

Remi

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.