top of page

Introducing our premium toggle switch with a sleek white metal finish, perfect for adding elegance to any space. Designed for durability and reliability, this stylish switch enhances any setting. Crafted from high-quality materials, it withstands daily use while providing a classy look. Ideal for both residential and commercial applications, this switch combines style and functionality to exceed your expectations.

Toggle Switch

£23.99Price
    • Premium Metal Construction: High-quality materials ensure exceptional durability and a refined look.
    • Elegant White Finish: Adds a touch of sophistication to any decor.
    • Durability: Built to withstand daily use while maintaining its stylish appearance.
    • Modern Aesthetic: Perfect for contemporary settings, blending functionality with a chic design.
No Reviews YetShare your thoughts. Be the first to leave a review.
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(); });