vote up 1 vote down star
2

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

flag

2 Answers

vote up 4 vote down check
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|flag
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 at 17:27
I mean it must "to add" text info textarea, not "to replace". – Mike May 2 at 17:29
>it must add text into textarea without replacing – Mike May 2 at 17:33
I modified my post accordingly – Darin Dimitrov May 2 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 at 17:36
show 14 more comments
vote up 1 vote down

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|flag
this page doesnt work - laboratorium.0xab.cd/jquery/fieldselection/… – Mike May 2 at 17:22
corrected the url. Check again please – eKek0 May 2 at 18:18
thanks, but I dont know how to use it :) – Mike May 2 at 18:43

Your Answer

Get an OpenID
or
never shown

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