Skip to content

Instantly share code, notes, and snippets.

@npiv
Created August 6, 2015 15:13
Show Gist options
  • Save npiv/c610e72b269c6f02e03f to your computer and use it in GitHub Desktop.
Save npiv/c610e72b269c6f02e03f to your computer and use it in GitHub Desktop.
[].slice.call(document.getElementsByClassName("pricetable")[0].getElementsByTagName("td")).
filter(function(el) { return /.* pw/.test(el.innerText) }).
forEach(function(el) { el.innerText = Math.round(parseInt(el.innerText.slice(1)) * 52 * 100 / 12)/100 })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment