Highlight search terms in referrer URL from Google, Yahoo!, Bing and custom site.
Highlight all contents of body element:
$("body").highlightSearchTerms();
Highlight with custom tag name:
$("body").highlightSearchTerms({
tagName: "span"
});
Highlight with custom class name:
$("body").highlightSearchTerms({
className: "keyword"
});
Support custom referrer pattern:
$("body").highlightSearchTerms({
referrerPatterns: [
"^http://example\\.com.+[&?]query=([^&]+).*$"
]
});