All pastes #2029037 Raw Edit

Stuff

public javascript v1 · immutable
#2029037 ·published 2010-12-25 17:13 UTC
rendered paste body
if (typeof jQuery == "undefined") {	var ele = document.createElement("script");	ele.type = "text/javascript";	ele.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js";	ele.onload = bkmklt;	document.body.appendChild(ele);} else {	bkmklt();}function bkmklt() {	var transactions = $("div.transactionRow.odd, div.transactionRow.even");	var data = "";	transactions.each(function() {		if (this.innerHTML.indexOf("transactionRowTitle") >= 0) {			var date = $(this).find("div.transactionRowDate");			var price = $(this).find("div.transactionRowPrice");			var event = $(this).find("div.transactionRowEvent");			var title = $(this).find("div.transactionRowTitle");			data += date.html() + "\t" + price.html() + "\t" + event.html() + "\t" + title.html() + "\n";		}	});	var w = window.open("about:blank", "steam_transactions");	w.document.open();	w.document.write("<html><body><pre>\n");	w.document.write(data);	w.document.write("\n</pre></body></html>");	w.document.close();}