Skip to content

Instantly share code, notes, and snippets.

@dkordik
Created May 29, 2012 06:04
Show Gist options
  • Save dkordik/2822873 to your computer and use it in GitHub Desktop.
Save dkordik/2822873 to your computer and use it in GitHub Desktop.
Ebay completed listings: make unsold items REALLY red and sold items REALLY green. to see what's gettin bought!
$(".binsold").each(function () {$(this).closest("td").css("backgroundColor","red")});
$(".bidsold").each(function () {$(this).closest("td").css("backgroundColor","green")});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment