Skip to content

Instantly share code, notes, and snippets.

@netj
Created August 3, 2013 16:36
Show Gist options
  • Save netj/6147065 to your computer and use it in GitHub Desktop.
Save netj/6147065 to your computer and use it in GitHub Desktop.
Print Mint.com Transactions as seen — Use this to print or save as pdf your transactions organized in Mint.com as seen on the screen. Mint.com pages are normally mangled when you try to print without the help of this bookmarklet.
/* Created with YouScript Bookmarklet Editor
* http://netj.github.com/youscript/
*/
var s = document.createElement("script");
s.src = "http://code.jquery.com/jquery-latest.min.js";
s.onload = function() {
$("link[rel='stylesheet']", document.head).attr("media", null);
$("#body-container .layer:last").css("display", "none");
print();
}
document.body.appendChild(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment