JSFiddle - React, Tailwind, and code Playground

by ayyadurai

HTML

<script>
    
    
</script>
<div>
    Registration closes in <span id="timer">05:00<span> minutes!
</div>

JavaScript

window.onload = function(){
    var hou = 2;
    var sec = 60;
    setInterval(function(){
    var a = new Date();
        document.getElementById("timer").innerHTML = hou +" : " + sec ;
        sec--;
        if(sec == 00)
        {
            hou--;
            sec = 60;
            if (hou == 0)
            {
                hou = 2;
            }
        }
        },500);
}

function resetTimer()
{
    
}