Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript help me edit this auto updating countdown script, so that it will display a message on date?

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #40378
    monkeymays
    Member

    Here’s the countdown. It restarts the countdown the day after the event, I am just wondering if there is a way to display a message on the date of the event instead of ” -1 “



    today = new Date();
    thismon = today.getMonth();
    thisday = today.getDate();
    thisyr = today.getFullYear();
    if (thismon == 9 && thisday > 31)
    {
    thisyr = ++thisyr;
    BigDay = new Date("October 31, "+thisyr);
    }
    else
    {
    BigDay = new Date("October 31, "+thisyr);
    }
    msPerDay = 24 * 60 * 60 * 1000;
    timeLeft = (BigDay.getTime() - today.getTime());
    e_daysLeft = timeLeft / msPerDay;
    daysLeft = Math.floor(e_daysLeft);
    e_hrsLeft = (e_daysLeft - daysLeft) * 24;
    hrsLeft = Math.floor(e_hrsLeft);
    minsLeft = Math.floor((e_hrsLeft - hrsLeft) * 60);
    document.write("" + daysLeft + " days til Halloween!");

    #112470
    monkeymays
    Member

    Perfect! Thank you so much =D

    _…and Happy Halloween!!!!_

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.