vote up 6 vote down star
2

I basically need to highlight a particular word in a block of text. For example, pretend I wanted to highlight the word "dolor" in this text:

<p>
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
</p>
<p>
    Quisque bibendum sem ut lacus. Integer dolor ullamcorper libero.
    Aliquam rhoncus eros at augue. Suspendisse vitae mauris.
</p>

How do I convert the above to something like this:

<p>
    Lorem ipsum <span class="myClass">dolor</span> sit amet, consectetuer adipiscing elit.
</p>
<p>
    Quisque bibendum sem ut lacus. Integer <span class="myClass">dolor</span> ullamcorper
    libero. Aliquam rhoncus eros at augue. Suspendisse vitae mauris.
</p>

Is this possible with jQuery?

Edit: As Sebastian pointed out, this is quite possible without jQuery - but I was hoping there might be a special method of jQuery which would let you do selectors on the text itself. I'm already using jQuery heavily on this site, so keeping everything wrapped up in jQuery would make things perhaps a bit more tidy.

flag

67% accept rate

8 Answers

vote up 12 vote down check

Maybe you can use highlight: JavaScript text higlighting jQuery plugin

link|flag
vote up 0 vote down

Hey, I wrote a plugin that does exactly this -- it's like the Johann Burkard plugin mlarsen posted, but works with regular expressions instead of strings. Check it out on github and please let me know if there are additional features you need.

link|flag
vote up 0 vote down

Is it possible to get this above example:

jQuery.fn.highlight = function (str, className)
{
    var regex = new RegExp(str, "g");

    return this.each(function ()
    {
        this.innerHTML = this.innerHTML.replace(
            regex,
            "<span class=\"" + className + "\">" + str + "</span>"
        );
    });
};

not to replace text inside html-tags like , this otherwise breakes the page.

link|flag
vote up 6 vote down

You could just write your own plugin for jQuery.

Taking basis in Andrew Hedges' example above:

jQuery.fn.highlight = function (str, className)
{
    var regex = new RegExp(str, "g");

    return this.each(function ()
    {
        this.innerHTML = this.innerHTML.replace(regex, "<span class=\"" + className + "\">" + str + "</span>");
    });
};

And you would use it like so:

$("selector").highlight("string to highlight", "highlight-class");

This example is much faster than the before-mentioned "The-plugin-SearchHighlight". Read:

http://stackoverflow.com/questions/117665/jquery-fastest-dom-insertion

link|flag
vote up 1 vote down
function hiliter(word, element) {
    var rgxp = new RegExp(word, 'g');
    var repl = '<span class="myClass">' + word + '</span>';
    element.innerHTML = element.innerHTML.replace(rgxp, repl);
}
hiliter('dolor');
link|flag
vote up 0 vote down

This may also be of interest: http://www.jquery.info/The-plugin-SearchHighlight

link|flag
vote up 0 vote down

If you're really game you could look through the source of StackOverflow for how it does syntax highlighting on the code blocks ;)

Essentially you'll have to just dynamically insert HTML (spans would be best) where you need them.

link|flag
vote up 1 vote down

You need to get the content of the p tag and replace all the dolors in it with the highlighted version.

You don't even need to have jQuery for this. :-)

link|flag
But it's easier with jQuery, isn't it? ;) – Eikern Sep 23 '08 at 8:26

Your Answer

Get an OpenID
or

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