mirror of
https://github.com/kidwellj/SelfAssessmentUOB.git
synced 2024-12-04 21:42:21 +00:00
6 lines
139 B
JavaScript
6 lines
139 B
JavaScript
// Function to GeneratePdf
|
|
function GeneratePdf() {
|
|
var element = document.getElementById('form-print');
|
|
html2pdf(element);
|
|
}
|