Link to home
Start Free TrialLog in
Avatar of David Schure
David Schure

asked on

Countdown Incorrect

Trying to find out where to set the countdown to on this page. I checked the js. Could not find a thing.
The website
Trying to set it to November 20th, 2021  6:00 pm
Avatar of David Schure
David Schure

ASKER

Found this..but not sure if this is working or not...
// Countdown
      
      var weddingDate = new Date();
      var weddingDate = new Date(weddingDate.getFullYear() + 1, 1 - 1, 1);
       $(".countdown").countdown({
        until: new Date(2021, 11-1,20),
        format: 'ODHMS'
       });

      //var weddingDate = new Date();
      //var weddingDate = new Date(weddingDate.getFullYear() + 1, 1 - 1, 1);
      //$(".countdown").countdown({
         //until: weddingDate,
         //format: 'ODHMS'
      //});

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of David Schure
David Schure

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of David Johnson, CD
David Johnson, CD
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial