I'm coding a countdown with jQuery countdown plugin.
I only want it to show active ('non-zero') periods, e.g. instead of
time left: 0 Days, 0 Hours, 13 Minutes, 20 Seconds
it should only show
13 Minutes, 20 Seconds.
My code is:
$('#countdown').countdown({
expiryUrl:'index.php?show=main',
expiryText: 'EXPIRED',
until: timeleft,
layout:'{d<}{dn} {dl} and {d>}{h<}{hn} {hl}, {h>}{m<}{mnn} {ml}, {m>}{s<}{snn}{sl}{s>}'
});
But the problem is that with this code it hides the 'Days' period, but NOT the 'Hours/Minutes'
So currently I get this:
time left: 0 Hours, 10 Minutes, 27 Seconds
What do I have to do to hide ALL zero periods?
Thank you!