Created
July 22, 2021 17:02
-
-
Save neodigm/fc2097293a02813d87da49c80850a92e to your computer and use it in GitHub Desktop.
Save HTML contents as a PDF file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var doc = new jsPDF(); | |
function saveDiv(id, title) { | |
doc.fromHTML(`<html><head><title>${title}</title></head><body>` + document.getElementById(id).innerHTML + `</body></html>`); | |
doc.save(title + '.pdf'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment