Created
May 29, 2012 06:04
-
-
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!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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