We are preparing your download ...
Please wait while we prepare your download. Your download will begin automatically in 15 seconds. Thank you for downloading from our website! We're delighted to share our resources with you and hope they will be beneficial in your endeavors.
document.addEventListener("DOMContentLoaded", function () {
var timeleft = 15;
var downloadTimer = setInterval(function () {
if (timeleft < 0) {
clearInterval(downloadTimer);
const link = document.createElement('a');
link.href = 'https://worksheetspdf.com/wp-content/uploads/2024/05/Printable-Alphabet-Do-a-Dot-Marker-Worksheets_20240519154754_strong_compression.pdf';
link.download = 'Printable Alphabet Do a Dot Marker Worksheets'; // Asignar un nombre al archivo descargado
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
// Set the success message.
document.getElementById("download-message").innerHTML = 'Your download has started. ';
} else {
document.getElementById("sdf-countdown").innerHTML = timeleft;
timeleft -= 1;
}
}, 1000);
});