Published
- 1 min read
how to close modal after print
The solution for this is noted below
how to close modal after print
Solution
var printContents = document.getElementById('print_data').innerHTML;
var originalContents = document.body.innerHTML;
document.body.innerHTML = printContents;
window.print();
document.body.innerHTML = originalContents;
setTimeout(function() {
location.reload();
}, 1000);
}
Try other methods by searching on the site. That is if this doesn’t work