John
John

Reputation: 619

JavaScript countdown doesn't work in Safari

I am using countdown. For unknown reason the countdown doesn't appear in Safari. It does work perfectly fine in Chrome, Opera and IE. Link to the countdown can be found here Did someone experience the same issue?

Please find link to my JS Countdown: https://gist.github.com/anonymous/048fa888e04b0981b207c48d674272fa

Upvotes: 0

Views: 1413

Answers (1)

Churix
Churix

Reputation: 480

The problem is in your main.js . Safari cannot create valid date object with 24:00:00. Try this :

var endDate = "May 01, 2016 00:00:00";

Upvotes: 2

Related Questions