Skip to content

Instantly share code, notes, and snippets.

@neodigm
Created July 22, 2021 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neodigm/fc2097293a02813d87da49c80850a92e to your computer and use it in GitHub Desktop.
Save neodigm/fc2097293a02813d87da49c80850a92e to your computer and use it in GitHub Desktop.
Save HTML contents as a PDF file.
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