VELTRON.NET/javascript/carousel.js
2025-06-20 14:21:34 -04:00

13 lines
497 B
JavaScript

// Duplicate buttons in Carousel
document.addEventListener("DOMContentLoaded", function () {
const ORIGINAL_BUTTONS = document.querySelectorAll(
".carousel-buttons > div > a"
);
const BUTTONS_CONTAINER = document.querySelector(".carousel-buttons > div");
// Loop through original buttons and clone anchor elements
ORIGINAL_BUTTONS.forEach(function (button) {
const CLONED_BUTTON = button.cloneNode(true);
BUTTONS_CONTAINER.appendChild(CLONED_BUTTON);
});
});