Skip to content

Instantly share code, notes, and snippets.

View weismannweb's full-sized avatar

Henry Weismann weismannweb

View GitHub Profile
// Math summation on columns
var myClasses= "column_one, column_two, column_three"; //give your columns key, you can use multiple by using comma
var totalText = "Total: "; // you can change the 'Total' text here
if(!$table.find('tfoot').length){
jQuery("<tfoot></tfoot>").appendTo($table);
}