var countDownDate = new Date("July 14, 2026 00:00:00").getTime();
var x = setInterval(function() {
var now = new Date().getTime();
var distance = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("countdown").innerHTML =
days + " Days " + hours + " Hours " + minutes + " Minutes " + seconds + " Seconds ";
if (distance < 0) {
clearInterval(x);
document.getElementById("countdown").innerHTML = "Mud & Suds Laundromat is opening soon!";
}
}, 1000);
Stay in the Loop
Get the latest when you sign up for our newsletter
|
|