Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Last active February 19, 2025 02:56
Show Gist options
  • Save anwerashif/a6d690ec968726683557fc2ea8500320 to your computer and use it in GitHub Desktop.
Save anwerashif/a6d690ec968726683557fc2ea8500320 to your computer and use it in GitHub Desktop.
Stock Countdown Text
<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