Skip to content

Instantly share code, notes, and snippets.

@5thWall
Last active August 29, 2015 13:56
Show Gist options
  • Save 5thWall/0a89309977f77b73647d to your computer and use it in GitHub Desktop.
Save 5thWall/0a89309977f77b73647d to your computer and use it in GitHub Desktop.
// Sort command for money columns with the stupidtable library.
// https://github.com/joequery/Stupid-Table-Plugin
$("selector").stupidtable({
"cash": function(a, b) {
reg = /\$(\d,?\d*\.\d{2})/;
aCash = reg.exec(a)[1].replace(',', '');
bCash = reg.exec(b)[1].replace(',', '');
return parseFloat(aCash) - parseFloat(bCash);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment