Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Having a textarea in a form I am trying to do several things:

  • fetch the current location of the cursor within the text area
  • fetch the current selection within the textarea
  • insert some text at the current cursor location
  • replace the current selection by some other text

As I am already using JQuery, I'd prefer a solution that works smoothly with that. Any pointers how to achieve the above would be appreciated.

share|improve this question

1 Answer

up vote 3 down vote accepted

There are many jQuery plugins for this. Here's a good one I've used before:

http://plugins.jquery.com/project/a-tools


To fetch the current location of the cursor within the text area:

$("textarea").getSelection().start;

To fetch the current selection within the textarea:

$("textarea").getSelection();

this returns an object like this:

{
    start: 1, // where the selection starts
    end: 4, // where the selection ends
    length: 3, // the length of the selection
    text: 'The selected text'
}

To insert some text at the current cursor location:

$("#textarea").insertAtCaretPos("The text to insert");

To replace the current selection by some other text:

$("#textarea").replaceSelection('This text will replace the selection');
share|improve this answer
This is great. Thank you! – szabgab Oct 2 '11 at 7:37
This is great, but I wonder why atools plugin has gone obsolete and I cannot find it anywhere except the demo site. Anyone have a replacement or just the code for "replaceselection"? – Dexter Mar 15 at 19:10
@Dexter - Here's a direct link to the script. I just fetched it from the demo. – Joseph Silber Mar 17 at 5:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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