Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
document.addEventListener("DOMContentLoaded", function () { let carousel = document.querySelector(".swiper-wrapper"); // Pak de wrapper van de Elementor-carousel if (carousel) { let items = Array.from(carousel.children); // Pak alle slides als array // Randomize de array met de Fisher-Yates shuffle for (let i = items.length - 1; i > 0; i--) { let j = Math.floor(Math.random() * (i + 1)); [items[i], items[j]] = [items[j], items[i]]; } // Voeg de randomized slides terug in de carousel items.forEach(item => carousel.appendChild(item)); } });
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.