Skip to content

Instantly share code, notes, and snippets.

View yourivdlans's full-sized avatar

Youri van der Lans yourivdlans

View GitHub Profile
@yourivdlans
yourivdlans / pdfcrowd.js
Created November 14, 2011 12:55
pdfcrowd split table
var pdfcrowd = {
splitTable: function(tableClass, printableHeight, breakClass) {
var tables = $("." + tableClass);
for(var i=0; i<tables.length; ++i) {
var splitIndices = [0];
var table = $(tables[i]);
var thead = table.children("thead");
var rows = table.children("tbody").children();
var tableTop = table.offset().top;