mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 12:19:05 +02:00
12 lines
259 B
HTML
12 lines
259 B
HTML
<!doctype html>
|
|
<div id="before-print-count"></div>
|
|
<script>
|
|
let count = 0;
|
|
onload = function() {
|
|
window.addEventListener('beforeprint', () => {
|
|
document.getElementById("before-print-count").innerText = ++count;
|
|
print()
|
|
});
|
|
print()
|
|
};
|
|
</script>
|