I am using the method below to search for a string in a web page. It matches plain text; but, it fails in the following context:

 <span>I</span> am searching for <b>text</b>

If I search for "am searching" it will match.. But if I search for "I am searching" it does not match. Below is the code I am using:

function search(text)
{
    if (document.body.createTextRange) 
    {
        var textRange = document.body.createTextRange();
        while (textRange.findText(text)) 
        {
            textRange.execCommand("BackColor", false, "yellow");
            textRange.collapse(false);
        }
    }
}

here is the fiddle. It is not working in IE8. Thanks

link|improve this question

2  
Your fiddle selects "formatting" just fine for me in IE9, even if I emulate IE7. It only does not seem to work on IE8. – pimvdb Nov 27 '11 at 10:06
Yes I am using IE8. – So I Nov 27 '11 at 10:12
This seems bugged in IE8. I can't even think of a workaround because you can't create your own textrange object. Oddly the textRange.text value is correct in that it doesn't include the tags, but findText is broken it seems. You may be out of luck here as I doubt MS is going to fix anything in IE8 at this point. – mrtsherman Nov 27 '11 at 10:27
1  
Any specific reason it's not meant to work in real browsers? – Stein G. Strindhaug Nov 27 '11 at 10:37
1  
There is a workaround posted here : stackoverflow.com/questions/130186/… – Zakaria Nov 27 '11 at 10:58
feedback

1 Answer

up vote 1 down vote accepted
<script type="text/javascript">
function findText(text) {
    $('*:contains('+text+')').css('background-color', 'Yellow');
});
</script>

<script type="text/javascript">
function findText(textBoxOrHtmlTagId, text) {
    $('#'+textBoxOrHtmlTagId+':contains('+text+')').css('background-color', 'Yellow');
});
$(document).ready(function(){
    $('#yourid').live('keydown', findText('yourid', $('#yourid').text());
});
</script>

Should work: in short use jquery

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.