PT
10/20/2020, 8:48 PMericbirdsall
10/20/2020, 8:56 PM<h1>Adjustment(s) Created</h1>
<p id="only"> This window will close in 5 seconds. </p>
<script>
var timeleft = 4;
var downloadTimer = setInterval(function(){
if(timeleft <= 0){
clearInterval(downloadTimer);
document.getElementById("only").innerHTML = "Finished";
} else {
document.getElementById("only").innerHTML = "This window will close in " + timeleft + " seconds.";
}
timeleft -= 1;
}, 1000);
setTimeout(() => {
window.close();
}, 5000);
</script>
``)`ericbirdsall
10/20/2020, 8:57 PMPT
10/20/2020, 10:09 PM