Skip to content

Instantly share code, notes, and snippets.

Created April 9, 2014 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/10310419 to your computer and use it in GitHub Desktop.
Save anonymous/10310419 to your computer and use it in GitHub Desktop.
<!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