Skip to content

Instantly share code, notes, and snippets.

@nikibobi
Created March 11, 2017 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikibobi/12502e9674aedcecfa772ccba0049c8a to your computer and use it in GitHub Desktop.
Save nikibobi/12502e9674aedcecfa772ccba0049c8a to your computer and use it in GitHub Desktop.
Extract PoE currency prices from http://poe.ninja/challenge/currency
$('tr td:nth-child(3) .currency-amount')
.toArray()
.map(v => $(v).text().slice(0, -3))
.map(Number)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment