Can someone help me get this code working in IE please:

HTML:

<p>Alex Thomas</p>
<button id="click">Click</button>

JS

$('#click').click(function(){
    var range = window.getSelection().getRangeAt(0);
    var selectionContents = range.extractContents();
    var span = document.createElement("span");
    span.style.color = "red";
    span.appendChild(selectionContents);
    range.insertNode(span);
});

Coded up here: http://jsfiddle.net/WdrC2/

Thanks in advance...

link|improve this question

69% accept rate
1  
@Alex IE prior to 9 does not implement getSelection(). – Šime Vidas Mar 24 '11 at 15:52
Which version of IE? – Toast Mar 24 '11 at 15:53
The code works for me in Chrome 8. I selected the text and clicked the button, and the text became red, so something works. – Blender Mar 24 '11 at 15:55
1  
+1 This is a great getSelection demo. – Šime Vidas Mar 24 '11 at 16:02
3  
+1 excellent question and demo – hackNightly Mar 24 '11 at 16:23
show 4 more comments
feedback

3 Answers

up vote 8 down vote accepted

IE prior to 9 doesn't support window.getSelection(). You can use document.selection instead (see this msdn page for the description). This selection object has a method createRange() that returns a TextRange object (see this msdn page for details).

Note that both the selection and textrange objects are Microsofts own implementation and do not follow the W3C standards. You can read more about the textrange and range issues on www.quirksmode.org/dom/range_intro.html.

The following implementation works in IE:

$('#click').click(function(){
    var range = document.selection.createRange();
    range.pasteHTML("<span style='color: red'>" + range.htmlText + "</span>");
});

It's not nearly as nice as the other implementation since you have to work with strings instead of the dom. There is a little hack where you paste <span id="myUniqueId"></span> as a placeholder, and afterwards replace it using the dom. You still have to work with range.htmlText or range.text though.

BTW: the above implementation is obviously IE only. You have to use some browser capability detection to decide which version to use.

link|improve this answer
Great answer, i'll try this, thanks. – Alex Thomas Mar 25 '11 at 9:58
feedback

Test this one here: http://jsfiddle.net/6BrWe/

It is a bit of a hack and not so pretty but should work in IE and other browsers - I have not done a lot of cross browser testing though :)

$('#click').click(function() {
    var whatBrowser = getIt();
    if (whatIsIt == 'notIE' && whatBrowser) {
        notIE(whatBrowser);
    }
    else if (whatIsIt == "isIE"&& whatBrowser) {
        isIE(whatBrowser);
    };
});

var whatIsIt = "";

function getIt() {
    if (window.getSelection) {
        whatIsIt = "notIE";
        return window.getSelection();
    }
    else if (document.getSelection) {
        whatIsIt = "notIE";
        return document.getSelection();
    }
    else {
        var selection = document.selection && document.selection.createRange();
        if (selection.text) {
            whatIsIt = "isIE";
            return selection;
        };
        return false;
    };
    return false;
};

function isIE(selection) {
    if (selection) {
        var selectionContents = selection.text;
        if (selectionContents) {
            selection.pasteHTML('<span class="reddy">' + selectionContents + '</span>');
        };
    };
};

function notIE(selection) {
    var range = window.getSelection().getRangeAt(0);
    var selectionContents = range.extractContents();
    var span = document.createElement("span");
    span.className= "reddy";
    span.appendChild(selectionContents);
    range.insertNode(span);
};
link|improve this answer
With all of that JS, I have to wonder why you didn't just do a document.getElementById("click").onclick for the first line. However, +1 for a thorough answer that uses feature detection. – Matt McDonald Mar 24 '11 at 21:49
OP had jQuery there, so I did not change that part – Mark Schultheiss Mar 24 '11 at 22:14
feedback

If you want to color "Alex Thomas" to red you can do

HTML

<p id='txt'>Alex Thomas</p>
<input type='button' id='btn' value='click' />

JS

$('#click').click(function(){
  $('#txt').attr('color','Red');
});
link|improve this answer
A pointless answer, but thanks anyway. – Alex Thomas Mar 24 '11 at 16:20
1  
He wants to make the highlighted section of 'Alex Thomas' red, not the whole thing. – Rocket Mar 24 '11 at 18:40
feedback

Your Answer

 
or
required, but never shown

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