Warning: Undefined array key "query" in /home/u636894263/domains/masoomyf.com/public_html/blog/index.php on line 8
Warning: Undefined array key "fileToDownload" in /home/u636894263/domains/masoomyf.com/public_html/blog/index.php on line 41
let msm_dwn_timer = document.getElementById("timerValue");
let msm_dwn_txt1 = document.getElementById("msmDwnTxt1");
let msm_dwn_txt2 = document.getElementById("msmDwnTxt2");
let msm_dwn_time = 0;
let msm_dwn_maxTime = 20;
function msm_dwn_initTimer() {
setTimeout(()=>{ msm_dwn_updateTimer(); }, 1000);
}
function msm_dwn_updateTimer() {
msm_dwn_time += 1;
if(msm_dwn_time < msm_dwn_maxTime) {
setTimeout(()=>{ msm_dwn_updateTimer(); }, 1000);
msm_dwn_timer.innerText = "" + (msm_dwn_maxTime-msm_dwn_time);
} else {
msm_dwn_txt1.innerHTML = "Your file is being downloading....";
msm_dwn_txt2.innerText = "Download begin";
document.getElementById("msmDwnRetry").innerHTML = " click here";
msm_dwn_startDownload();
}
}
function msm_dwn_startDownload() {
window.location="https://masoomyf.com/blog/downloadfile";
}
msm_dwn_initTimer();