how to download a div as jpg file code example
Example: how to download a div as jpg file
html2canvas(document.querySelector("#capture")).then(canvas => {
document.body.appendChild(canvas)
});
html2canvas(document.querySelector("#capture")).then(canvas => {
document.body.appendChild(canvas)
});