On This Day

Now try new year and Sant Valentine. Work in progress

Loading...
// Add the HTML for the slideshow container

// Update the loadEvents() function to show the slideshow /* function loadEvents() { var day = document.getElementById("day").value; var month = document.getElementById("month").value; if (month && day) { document.getElementById("slideshow-container").style.display = "block"; if (month == "January" && day == "1") { document.getElementById("text").innerHTML = "Happy New Year!"; document.getElementById("slideshow").src = "newyear.jpg"; } else if (month == "February" && day == "14") { document.getElementById("text").innerHTML = "Happy Valentine's Day!"; document.getElementById("slideshow").src = "valentines.jpg"; } else { document.getElementById("text").innerHTML = "No special events today."; document.getElementById("slideshow").src = "default.jpg"; } } else { document.getElementById("slideshow-container").style.display = "none"; } }*/ function loadEvents(){ var day = document.getElementById("day").value; var month = document.getElementById("month").value; if (month && day) { if (month == 1 && day == 1) { // Show the slideshow for January 1st document.getElementById("events").innerHTML = `

Date: ${day}/${month}

You have selected a date for events.

Important events on this date

`; // Add the slides document.getElementById("slideshow").innerHTML = `
New Year Celebration

New Year Celebration

Event 2

Event 2

`; // Show the slideshow document.getElementById("slideshow-container").style.display = "block"; } else if (month == 2 && day == 14) { // Show the slideshow for Valentine's Day document.getElementById("events").innerHTML = `

Date: ${day}/${month}

You have selected a date for events.

Important events on this date

`; // Add the slides document.getElementById("slideshow").innerHTML = `
Valentine's Day

Valentine's Day

Event 2

Event 2

`; // Show the slideshow document.getElementById("slideshow-container").style.display = ".innerHTML =
Slide 1

${slides[slideIndex].text}

; // Add the HTML for the slideshow container