I have a div
containing some text:
<div>Some text here</div>
I also have a text box where the user will enter a search string.
Is there a CSS
way to set the background-color
property for a text string matching a particular keyword entered in the search field?
What I have done currently is to find and replace using JavaScript. I am ready to use jQuery for this.