Skip to content

Instantly share code, notes, and snippets.

@rodmcnew
Last active June 29, 2018 23:26
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 rodmcnew/89f55aec3cd8e9e5cb660e7625c99df7 to your computer and use it in GitHub Desktop.
Save rodmcnew/89f55aec3cd8e9e5cb660e7625c99df7 to your computer and use it in GitHub Desktop.
Bank Net Balance Bookmarklet
javascript:(function () { function getValue(selector) { return document.querySelector(selector) .innerHTML.replace('$', '').replace(',', '') } alert(Math.round(getValue('#DepositAccountsTable .accountRowLast') - getValue('#CreditsTable .accountRowLast'))); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment