Skip to content

Instantly share code, notes, and snippets.

@shahzebkhan111
shahzebkhan111 / gist:8b30088abeed722bb3e7b985db70781c
Created February 19, 2019 11:52
Using jspdf to export data as pdf
// include jspdf and jspdf-auto
//base function that i called on button click.
function exportReportTable() {
imageDataToUrl($("#imgUrl").val(), function(dataUrl) {
exportReportAsPdf(dataUrl)
});
}