function printPreview(title) {
var printWindow = window.open("", "_blank");
var tableContent = document.getElementById("datatable_preview").outerHTML;
printWindow.document.write(
`<html><head><title>${title}</title></head><body>`
);
printWindow.document.write(`<h1>${title}</h1>`);
printWindow.document.write(tableContent);
printWindow.document.write("</body></html>");
printWindow.document.close();
printWindow.print();
printWindow.close();
}
Thursday, January 25, 2024
Print Preview Vanilla JS
Subscribe to:
Posts (Atom)
Set Cookie dan Remove Cookie dengan php vanilla.js
< html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport...
-
<html> <head> <title>Convert Image to Base64</title> </head> <body> <h2> Convert Ima...
-
Javascript ES6 Untuk Kali ini Coba Nge-Share Upload Foto dengan Vanilla Javascript dengan 2 method. method pertama dengan menggunakan n...
-
< html lang = "en" > < head > < meta charset = "UTF-8" > < meta http-equiv = "X-UA-...