mirror of
https://github.com/kidwellj/SelfAssessmentUOB.git
synced 2025-01-09 13:22: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);
|
|
}
|