I want to show just the hours minutes and seconds calculated from days. I dont want to show days. how can I do this. I am using this below countdown library
http://www.gieson.com/Library/projects/utilities/countdown/
what I have tried so far is this
var myCountdownTest = new Countdown({
time:86400 * 60,
width : 300,
height : 70,
rangeHi:"hour",
style: "flip"
});
</script>
It is showing me HOURS MINUTES and SECONDS but according to the date.means If the time remaing is 2 days and 5 hours. It is showing me only 5 hour
Please help me thanks