top of page

New

I'm a paragraph. Click here to add your own text and edit me. It’s easy. Just click “Edit Text” or double click me to add your own content and make changes to the font. I’m a great place for you to tell a story and let your users know a little more about you

bottom of page
console.log("Code is running on page: " + window.location.href); import wixWindow from 'wix-window'; // Function to update the welcome message function updateWelcomeMessage() { // Get the current date and time var now = new Date(); var hours = now.getHours(); // Get the Text element by its ID var welcomeMessage = $w("#text28"); // Display a welcome message based on the time of day if (hours >= 5 && hours < 12) { welcomeMessage.text = "Good Morning!"; } else if (hours >= 12 && hours < 18) { welcomeMessage.text = "Good Afternoon!"; } else { welcomeMessage.text = "Good Evening!"; } } // Call the function when the page is loaded $w.onReady(function () { updateWelcomeMessage(); });