i am trying to use the jQuery plugin countdown 2.1 to count the time up. I need to clock to start at 0 and count up one second at a time.
Here is what I have done
$('#MasterBreakTimer').countdown(new Date(),
{
elapsed: true,
strftime: '%H:%M:%S'
});
but it is not displaying anything
How can I correctly implement a count up clock?