up vote 2 down vote favorite
7
share [g+] share [fb]

Need to insert selected text on the page into textarea. There must be some button to do it.

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted
jQuery(function() {
    // Bind the click handler of some button on your page
    jQuery('#someButton').click(function(evt) {
        // Insert the selected text into a given textarea
        var textarea = jQuery('textarea#someTextArea');
        textarea.val(textarea.val() + getSelectedText());
        evt.preventDefault();
    });
});

// Get user selection text on page
function getSelectedText() {
    if (window.getSelection) {
        return window.getSelection();
    }
    else if (document.selection) {
        return document.selection.createRange().text;
    }
    return '';
}
link|improve this answer
this works, but if textarea already have some text, the function removes it with a selected text. How can I fix this? – Mike May 2 '09 at 17:27
I mean it must "to add" text info textarea, not "to replace". – Mike May 2 '09 at 17:29
>it must add text into textarea without replacing – Mike May 2 '09 at 17:33
I modified my post accordingly – Darin Dimitrov May 2 '09 at 17:34
is it possible to insert not a simple text, with some tag within? For example, we are selecting word "Darin", pushing the button "#someButton" and it adds the "Darin" into textarea with a tag "[q]" -"[q]Darin[/q]"? – Mike May 2 '09 at 17:36
show 14 more comments
feedback

You can do something like this:

  • Copy the selected text you can use some jquery plugin listed here.
  • Paste it inside a textarea:

    $('#textareaselector').text(selectedText)

link|improve this answer
this page doesnt work - laboratorium.0xab.cd/jquery/fieldselection/0.2.3-test/test.html – Mike May 2 '09 at 17:22
corrected the url. Check again please – eKek0 May 2 '09 at 18:18
thanks, but I dont know how to use it :) – Mike May 2 '09 at 18:43
feedback

Your Answer

 
or
required, but never shown

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