Skip to content

Instantly share code, notes, and snippets.

@jainofcsubham
jainofcsubham / Something.js
Created September 12, 2019 15:21
Client side PDF generation.
/**
* @param element The element that triggered this function.
* Downloads the results summary in PDF format.
*/
function downloadPDF(element) {
var orientation = 'l';
var left = 25
const filename = 'TrustedTechTeam-WSEstimate.pdf';
var html = $('.results').html();