Last active
February 19, 2025 02:56
-
-
Save anwerashif/a6d690ec968726683557fc2ea8500320 to your computer and use it in GitHub Desktop.
Stock Countdown Text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p style="font-size:16px; text-align: right; color: #303030;">Just <span class="stockCountdown" style="font-weight:bold; color: black;">15</span> left in stock</p> | |
<script> | |
document.addEventListener("DOMContentLoaded", function () { | |
var minute = 15; | |
var sec = 6; | |
setInterval(function() { | |
document.querySelectorAll(".stockCountdown").forEach(el => { | |
el.innerHTML = minute; | |
}); | |
sec--; | |
if (sec == 00) { | |
minute --; | |
sec = 60; | |
if (minute == 0) { | |
minute = 5; | |
} | |
} | |
}, 1000); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment