I have the below javascript function, which when passed a word such as "Department" will highlight in red the first instance of "Department" found on the screen. However, i would like this code to highlight ALL instances of the given word.

function findString (str) { 
    var TRange=null;
    var strFound; 
    var TRange = self.document.body.createTextRange();
    TRange.findText(str);
    TRange.execCommand('foreColor', false, "#ff0000");
    return;
} 
link|improve this question

feedback

4 Answers

up vote 1 down vote accepted
function findString (str) { 
    var TRange = document.body.createTextRange();

    while (TRange.findText(str)){
        TRange.execCommand("foreColor", false, "#ff0000");
        TRange.collapse(false);
    }
}
link|improve this answer
BINGO!!! thank you :) – Adam Apr 6 '11 at 21:57
feedback
function findString (str) { 
    var TRange=null;
    var strFound; 
    var TRange = self.document.body.createTextRange();

    while(TRange.findText(str))
    {
        TRange.execCommand('foreColor', false, "#ff0000");
    }

    return; 
    } 
link|improve this answer
While this looks promising, and i will try working with this a little bit.. this exact code just freezes my browser probably due to continuous loop? – Adam Apr 6 '11 at 21:09
feedback

This code seems to have done it, but it is sloppy and a little excessive. I'm sure there must be a shorter way to do it rather than almost duplicating my execCommand line twice in the same function.

var TRange=null;
function findString (str) { 

    var strFound; 
    var counter = 0;

    if (TRange==null || strFound==0) {
            TRange=self.document.body.createTextRange()  
            strFound=TRange.findText(str) 
            if (strFound) {
                TRange.execCommand('foreColor', false, "#ff0000");
            }
    } 

    TRange.collapse(false);
    while (strFound=TRange.findText(str)) {
        if (counter > 50){
            alert("Search exceeded maximum limit of 50.");
            return;
        }
        TRange.execCommand('foreColor', false, "#ff0000");
        TRange.collapse(false); 
        counter += 1;
    }

    return;
} 
link|improve this answer
Do you really want to limit the number of matches? – Tim Down Apr 6 '11 at 21:47
this was just to make sure i didnt get stuck in an infinant loop... it is not necessary =] – Adam Apr 6 '11 at 21:56
feedback

Take a look at this link: http://www.nsftools.com/misc/SearchAndHighlight.htm

The script used on that page is a different approach to what you're taking but the end result is exactly what you're looking for.

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.