Skip to content

Instantly share code, notes, and snippets.

@cobyism
Created September 18, 2012 11:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cobyism/3742630 to your computer and use it in GitHub Desktop.
Save cobyism/3742630 to your computer and use it in GitHub Desktop.
Highlight things mentioning GitHub on Hacker News using defunkt/dotjs
// Highlight articles on/about GitHub
$('span, a, p').filter(':contains("github")')
.css('background-color', '#ffff66')
$('span, a, p').filter(':contains("GitHub")')
.css('background-color', '#ffff66')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment