Skip to content

Instantly share code, notes, and snippets.

@rocktronica
Created April 1, 2012 17:51
Show Gist options
  • Save rocktronica/2277362 to your computer and use it in GitHub Desktop.
Save rocktronica/2277362 to your computer and use it in GitHub Desktop.
Search and highlight HackerNews comments
// Paste this into your JS console, love.
var sNeedle = prompt("Find what?").toLowerCase();
var tds = document.getElementsByClassName("default");
var iTdCount = tds.length;
for (var i = 0; i < iTdCount; i++) {
var td = tds[i];
var sHtml = td.innerHTML.toLowerCase();
if (sHtml.indexOf(sNeedle) > -1) {
td.setAttribute(
"style",
(td.getAttribute("style") || "") + "background: yellow; box-shadow: 0 0 0 10px yellow;"
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment