Skip to content

Instantly share code, notes, and snippets.

@cstumph
Created July 8, 2012 12:24
Show Gist options
  • Save cstumph/3070715 to your computer and use it in GitHub Desktop.
Save cstumph/3070715 to your computer and use it in GitHub Desktop.
get ordered list of wishlist prices off of adafruit
//get ordered list of wishlist prices off of adafruit
var x = $('#cartContentsDisplay tr td:nth-child(4) b').text().split('$').sort(function(a,b){return b-a})
function(a,b){return b-a}
x.each(console.log(this))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment