up vote 38 down vote favorite
41
share [g+] share [fb]

I would like to have users click a link that then selects the html text in another element (NOT an input). By "select" I mean the same way you would select text by dragging your mouse over it. This has been a bear to research because everyone talks about "select" or "highlight" in other terms.

Is this possible?

My code so far is thus:

html:

<a href="javascript:" onclick="SelectText('xhtml-code')">Select Code</a>
<code id="xhtml-code">Some Code here </code>

js (jquery):

function SelectText(element) {
    $("#" + element).select();
}

but it doesn't work. Am I missing something blatantly obvious?

Thanks

link|improve this question

74% accept rate
feedback

15 Answers

up vote 57 down vote accepted

I have found a solution for this, thanks to this thread found by TheVillageIdiot. I was able to modify the info given and mix it with a bit of jQuery to create a totally awesome function to select the text in any element, regardless of browser:

function SelectText(element) {
    var text = document.getElementById(element);
    if ($.browser.msie) {
        var range = document.body.createTextRange();
        range.moveToElementText(text);
        range.select();
    } else if ($.browser.mozilla || $.browser.opera) {
        var selection = window.getSelection();
        var range = document.createRange();
        range.selectNodeContents(text);
        selection.removeAllRanges();
        selection.addRange(range);
    } else if ($.browser.safari) {
        var selection = window.getSelection();
        selection.setBaseAndExtent(text, 0, text, 1);
    }
}

EDIT (9/28/11):

It's been a while since this answer was updated, and I've learned a lot as a developer since I asked and answered this question. It has also gotten a lot more attention than I thought it would. I want to provide a better solution than the original one I posted, one that doesn't rely on deprecated jQuery methods, or jQuery at all, for that matter. Could you use jQuery to help you out? Sure, but if you can achieve the same result without jQuery and using feature detection instead of browser sniffing, why wouldn't you? So below is my updated answer:

function selectText(element) {
    var doc = document;
    var text = doc.getElementById(element);    

    if (doc.body.createTextRange) { // ms
        var range = doc.body.createTextRange();
        range.moveToElementText(text);
        range.select();
    } else if (window.getSelection) { // moz, opera, webkit
        var selection = window.getSelection();            
        var range = doc.createRange();
        range.selectNodeContents(text);
        selection.removeAllRanges();
        selection.addRange(range);
    }
}

Here is an updated working demo. For those of you looking for a jQuery plugin, I made one of those too (updated).

UPDATED (1/10/2012) Per Tim Down's suggestion, setBaseAndExtent() is not needed for webkit.

link|improve this answer
5  
@cerin yes it does: jsfiddle.net/edelman/KcX6A/1 – Jason Apr 6 '11 at 15:58
1  
Jason, this worked really well. Thanks for the work on it. – Matt Setter Aug 22 '11 at 13:46
1  
+1. The new version is a big improvement. – Tim Down Oct 4 '11 at 23:46
1  
Nice new version(from 9/28/11)! But little improvement should be made, for my taste. Line selection.setBaseAndExtent(text, 0, text, 1); should be replace with selection.setBaseAndExtent(element, 0, element, element.innerText.length-1); Useful if you have <div>...<div>...<div></div></div></div> and want select text from very outermost DIV to (and include) innermost DIV. – Smarty Dec 15 '11 at 9:24
1  
There's no need for setBaseAndExtent(), and you're assuming in that branch that the element has exactly one child. This is not necessarily the case. @Smarty: your suggested replacement is also wrong. The correct version is selection.setBaseAndExtent(element, 0, element, element.childNodes.length);. Offsets within an element are node offsets, not text offsets. – Tim Down Jan 10 at 12:57
show 7 more comments
feedback

Here's a version with no browser sniffing and no reliance on jQuery:

function selectElementText(el, win) {
    win = win || window;
    var doc = win.document, sel, range;
    if (win.getSelection && doc.createRange) {
        sel = win.getSelection();
        range = doc.createRange();
        range.selectNodeContents(el);
        sel.removeAllRanges();
        sel.addRange(range);
    } else if (doc.body.createTextRange) {
        range = doc.body.createTextRange();
        range.moveToElementText(el);
        range.select();
    }
}

selectElementText(document.getElementById("someElement"));
selectElementText(elementInIframe, iframe.contentWindow);
link|improve this answer
1  
Thanks Tim, I had to add el.focus(); to the top of the function. Maybe it's only required when the function is triggered from clicking on certain elements in certain browsers. For me, a button element in FF 3.6 – Luckyrat Sep 8 '10 at 14:24
1  
-1, not enough jQuery. – Cerin Apr 6 '11 at 15:30
-1 i don't understand because of lack of jquery – Jason Jun 22 '11 at 0:22
I get this error in FF 5.0.1 with Firebug: Parameter is not an object" code: "1003 [Break On This Error] range.selectNodeContents(el); – FFish Jul 24 '11 at 7:51
@FFish: That means the first parameter you're passing to selectElementText() is not an element. Are you passing a jQuery object? Or something else? – Tim Down Jul 24 '11 at 10:10
feedback

Jason's code can not be used for elements inside an iframe (as the scope differs from window and document). I fixed that problem and I modified it in order to be used as any other jQuery plugin (chainable):

Example 1: Selection of all text inside < code > tags with single click and add class "selected":

$(function() {
    $("code").click(function() {
        $(this).selText().addClass("selected");
    });
});

Example 2: On button click, select an element inside an Iframe:

$(function() {
    $("button").click(function() {
        $("iframe").contents().find("#selectme").selText();
    });
});

Note: remember that the iframe source should reside in the same domain to prevent security errors.

jQuery Plugin:

jQuery.fn.selText = function() {
    var obj = this[0];
    if ($.browser.msie) {
        var range = obj.offsetParent.createTextRange();
        range.moveToElementText(obj);
        range.select();
    } else if ($.browser.mozilla || $.browser.opera) {
        var selection = obj.ownerDocument.defaultView.getSelection();
        var range = obj.ownerDocument.createRange();
        range.selectNodeContents(obj);
        selection.removeAllRanges();
        selection.addRange(range);
    } else if ($.browser.safari) {
        var selection = obj.ownerDocument.defaultView.getSelection();
        selection.setBaseAndExtent(obj, 0, obj, 1);
    }
    return this;
}

I tested it in IE8, Firefox, Opera, Safari, Chrome (current versions). I'm not sure if it works in older IE versions (sincerely I don't care).

link|improve this answer
Works fine for me. Thank you. – deamon Oct 5 '11 at 21:23
Works great! Thanks for the jquery plugin! – Erik J Nov 29 '11 at 21:57
feedback

This thread contains really wonderful stuff. But I'm not able to do it right on this page using FF 3.5b99 + FireBug due to "Security Error".

Yipee!! I was able to select whole right hand sidebar with this code hope it helps you:

    var r = document.createRange();
    var w=document.getElementById("sidebar");  
    r.selectNodeContents(w);  
    var sel=window.getSelection(); 
    sel.removeAllRanges(); 
    sel.addRange(r);

PS:- I was not able to use objects returned by jquery selectors like

   var w=$("div.welovestackoverflow",$("div.sidebar"));

   //this throws **security exception**

   r.selectNodeContents(w);
link|improve this answer
1  
You need to get the element from jQuery, as you're trying to select a jQuery object: var w=$("div.welovestackoverflow",$("div.sidebar")).get(0); – Blixt Jun 12 '09 at 7:33
doesn't work... i get an error "object does not support this method" and it highlights the first line. i did some digging and found that there's a "document.body.createTextRange()" but then "selectNodeContents" doesn't work.... and this is in IE – Jason Jun 12 '09 at 15:22
i read that thread you found... amazing... i was able to create a function from that info that works on all browsers. Thank you so much! My solution is posted – Jason Jun 12 '09 at 15:37
feedback

Have a look at the Selection object (Gecko engine) and the TextRange object (Trident engine.) I don't know about any JavaScript frameworks that have cross-browser support for this implemented, but I've never looked for it either, so it's possible that even jQuery has it.

link|improve this answer
feedback

According to the jQuery documentation of select():

Trigger the select event of each matched element. This causes all of the functions that have been bound to that select event to be executed, and calls the browser's default select action on the matching element(s).

There is your explanation why select() won't work in this case.

I think should approach it slightly differently. You could try placing a span tag around the text you want to highlight and give that span an appropriate css style.

link|improve this answer
i'm not trying to highlight the text with a css style. i want the text to be selected. – Jason Jun 12 '09 at 7:00
Sorry. Guess I misread your question. – Kees de Kooter Jun 12 '09 at 7:37
feedback

jason almost has it with his selectText function. avoid browser detection and it might just be the next masterpiece.

link|improve this answer
unfortunately, there's no way around browser detection... each browser handles selection differently :\ – Jason Apr 7 '10 at 18:33
2  
Jason: not true. There's IE and non-IE (apart from Safari pre-version 3, which is not too common these days), and you can directly the features you need rather than rely on browser sniffing. – Tim Down May 15 '10 at 22:32
@TimDown you're right. i've updated my answer to remove a lot of the cruft. – Jason Oct 4 '11 at 22:37
feedback

I have found this jQuery plugin to be extremely useful!

http://plugins.jquery.com/node/7411

link|improve this answer
feedback

lepe - That works great for me thanks! I put your code in a plugin file, then used it in conjunction with an each statement so you can have multiple pre tags and multiple "Select all" links on one page and it picks out the correct pre to highlight:

<script type="text/javascript" src="../js/jquery.selecttext.js"></script>
<script type="text/javascript">
  $(document).ready(function() { 
        $(".selectText").each(function(indx) {
                $(this).click(function() {                 
                    $('pre').eq(indx).selText().addClass("selected");
                        return false;               
                    });
        });
  });

link|improve this answer
feedback

a Updated version that works in chrome:

function SelectText(element) {
    var doc = document;
    var text = doc.getElementById(element);    
    if (doc.body.createTextRange) { // ms
        var range = doc.body.createTextRange();
        range.moveToElementText(text);
        range.select();
    } else if (window.getSelection) {
        var selection = window.getSelection();
        var range = doc.createRange();
        range.selectNodeContents(text);
        selection.removeAllRanges();
        selection.addRange(range);

    }
}

$(function() {
    $('p').click(function() {
        SelectText("selectme");

    });
});

http://jsfiddle.net/KcX6A/326/

link|improve this answer
feedback

When I try your selectElement function, I get a JS error about "text is undefinited". I see you have a function that accepts "text" as a variable, but that varaible isn't definted or set anywhere else. Are you missing a line?

link|improve this answer
feedback

Tim's method works perfectly for my case - selecting the text in a div for both IE and FF after I replaced the following statement:

range.moveToElementText(text);

with the following:

range.moveToElementText(el);

The text in the div is selected by clicking it with the following jQuery function:

        $(function () {
        $("#divFoo").click(function () {
             selectElementText(document.getElementById("divFoo"));
        })
     });
link|improve this answer
Ah yes. Thanks for spotting that. I've edited my answer. – Tim Down Aug 23 '10 at 8:09
feedback

Taking dennismonsewicz's tip and connecting it with lepe's packaging of the solution as a jQuery plugin, here is a gist that combines all known text selection features discussed here, as a plugin for jQuery: https://gist.github.com/823547

link|improve this answer
feedback

I was searching for the same thing, my solution was this:

$('#el-id').focus().select();
link|improve this answer
you can't use focus() on a non-input, which is what this question is about. – Jason Apr 21 '11 at 20:36
but you can use it on a textarea element - which was the problem I googled to arrive here. My fault for not reading the question all the way through. – Auston Apr 28 '11 at 0:04
feedback

here is another simple solution to get the selected the text in the form of string, you can use this string easily to append a div element child into your code:

          var text = '';
          if(window.getSelection){
            text = window.getSelection();
          }else if(document.getSelection){
            text = document.getSelection();
          }else if(document.selection){
            text = document.selection.createRange().text;
          }
          text=text.toString();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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