Skip to content

Instantly share code, notes, and snippets.

View kitgrose's full-sized avatar

Kit Grose kitgrose

View GitHub Profile
@kitgrose
kitgrose / gist:1745011
Created February 5, 2012 12:01 — forked from xerxesb/gist:1744913
Netbank hackery
var BetterNetbank = {
inject: function(table) {
if ($("#" + table).length > 0) {
$('#' + table + ' thead tr').prepend('<th>X</th>');
$('#' + table + 'Body > tr').map(function() {
$(this).prepend('<td><input type="checkbox" /></td>');
});
}
}
}