You see it in Google search results and a lot of other sites that have good search functionality. When you perform a search, your words or phrases are highlighted in the search results making it easy for you to find the most relevant content.
Today I’m going to show you a simple way to add this to your website or blog so your users can find what they need in style. I think that this kind of thing should be implemented more often for how easy it is to implement.
Here we go!
The JavaScript code:
-
function highlightOnLoad() {
-
-
if (/s\=/.test(window.location.search)) {
-
var searchString = getSearchString();
-
-
var textContainerNode = document.getElementById("content");
-
-
var regex = new RegExp(">([^<]*)?("+searchString+")([^>]*)?<","ig");
-
highlightTextNodes(textContainerNode, regex);
-
}
-
}
-
-
-
function getSearchString() {
-
-
var rawSearchString = window.location.search.replace(/[a-zA-Z0-9\?\&\=\%\#]+s\=(\w+)(\&.*)?/,"$1");
-
-
return rawSearchString.replace(/\+/g,"\|");
-
}
-
-
function highlightTextNodes(element, regex) {
-
var tempinnerHTML = element.innerHTML;
-
-
element.innerHTML = tempinnerHTML.replace(regex,">$1<span class='highlighted'>$2</span>$3<");
-
}
-
-
-
addOnLoad(highlightOnLoad());
function highlightOnLoad() {
// Get search string
if (/s\=/.test(window.location.search)) {
var searchString = getSearchString();
// Starting node, parent to all nodes you want to search
var textContainerNode = document.getElementById("content");
// The regex is the secret, it prevents text within tag declarations to be affected
var regex = new RegExp(">([^<]*)?("+searchString+")([^>]*)?<","ig");
highlightTextNodes(textContainerNode, regex);
}
}
// Pull the search string out of the URL
function getSearchString() {
// Return sanitized search string if it exists
var rawSearchString = window.location.search.replace(/[a-zA-Z0-9\?\&\=\%\#]+s\=(\w+)(\&.*)?/,"$1");
// Replace '+' with '|' for regex
return rawSearchString.replace(/\+/g,"\|");
}
function highlightTextNodes(element, regex) {
var tempinnerHTML = element.innerHTML;
// Do regex replace
element.innerHTML = tempinnerHTML.replace(regex,">$1<span class='highlighted'>$2</span>$3<");
}
// Call this onload, I recommend using the function defined at: http://untruths.org/technology/javascript-windowonload/
addOnLoad(highlightOnLoad());
Now, the CSS:
-
span.highlighted {
-
background-color: #161616;
-
font-weight: bold;
-
}
span.highlighted {
background-color: #161616;
font-weight: bold;
}
Code explanation
First, the highlightOnLoad function checks window.location.search to see if we need to be running any of this stuff, then calls getSearchString to get a sanitized search string so that nothing funky can happen if, say, the user searches for ‘<script>’. You should really be sanitizing all search inputs at least on the back-end anyway.
Then, the highlightTextNodes function uses a regex replace on our textContainerNode’s innerHTML. The regex verifies that the text is between a > and a < (and not the other way around). Actually nice and simple!
Caveats
This may end up being a bit slow if you are doing this on a LOT of text, but for my blog text, it seems quite snappy to me. Also, the CSS does not bold text inside links, but the background color is there to make it obvious.