-
-
Save nafg/10310491 to your computer and use it in GitHub Desktop.
View Mint transactions within a date range
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
<!DOCTYPE html> | |
<html><body> | |
<h1>Show Mint transactions within date range</h1> | |
<form action="https://wwws.mint.com/transaction.event" target="_blank" method="get"> | |
<input type="date" id="s" onchange="document.getElementById('sd').value=this.value.replace(/(\d+)-(\d+)-(\d+)/,'$2/$3/$1')"/> | |
to | |
<input type="date" id="e" onchange="document.getElementById('ed').value=this.value.replace(/(\d+)-(\d+)-(\d+)/,'$2/$3/$1')"/> | |
<input type="hidden" name="startDate" id="sd"/><input type="hidden" name="endDate" id="ed"/> | |
<input type="submit"/> | |
</form> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment