JQuery Countdown Timer Delayed
I have implemented the JQuery Countdown Timer (jquery.lwtCountdown-1.0.js). Am facing the delay in the timer in different machines and same machine different browsers. Sometimes it
Solution 1:
There is two issues with your code:
1. window.setTimeout("Tick()", 1000); here you are passing a string you need to
pass a function
2. you need a global variable for TotalSeconds
i'm not sure what this code does, however here is a working DEMO
Post a Comment for "JQuery Countdown Timer Delayed"