Suppose I have an integer number as a variable. (this number can be any integer number).
Now I want to create a countdown timer based on this number on the page.
To create countDown, I am using jquery-countdownTimer plugin.
A simple usage of this plugin is like this :
$(function(){
    $("#hms_timer").countdowntimer({
        hours : 3‚
        minutes : 10‚
        seconds : 10‚
        size : "lg"‚
        pauseButton : "pauseBtnhms"‚
        stopButton : "stopBtnhms"
    });
});
As you see , it gets hours , minutes and seconds in 3 separate numbers.
Now my question is how can I convert an integer number to Equivalent hours , minutes and seconds in simplest way?
 
    