Last active
June 29, 2018 23:26
-
-
Save rodmcnew/89f55aec3cd8e9e5cb660e7625c99df7 to your computer and use it in GitHub Desktop.
Bank Net Balance Bookmarklet
This file contains 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
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