Skip to content
Advertisement

NaN countdown timer javascript

I have created a javascript countdown for a wordpress custom plugin. I’ve read this article and this is the first time I try to make something similar. After I’ve ended writing the code I was testing it and initially it was working fine. Now if I try to log the values of the hours minutes days and seconds in console I get a NaN message. I don’t know what’s wrong, can anyone help me?

JavaScript

Advertisement

Answer

The issue was that you were passing two arguments to initClock, but the method signature only accepted one (endTime). By removing the first argument, which appeared to be an unused CSS selector string, the problem is resolved:

JavaScript
JavaScript

Note: since this was primarily about the JavaScript, I removed the PHP conditional and hardcoded a date value in place of the get_option call.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement