Skip to content
Underlayment & Liner Videos
- Choosing a selection results in a full page refresh.
- Opens in a new window.
// Array of URLs for each slide (in order)
const slideLinks = [
'https://frameitall.com/collections/raised-garden-beds', // Slide 1
'https://frameitall.com/collections/raised-garden-beds', // Slide 2
'https://frameitall.com/collections/raised-garden-bed-with-fence', // Slide 3
'https://frameitall.com/pages/composite-fencing', // Slide 4
// Add more URLs if you have more slides
];
// Select all slides
const slides = document.querySelectorAll('.slideshow__slide');
// Loop through each slide
slides.forEach((slide, index) => {
slide.style.cursor = 'pointer'; // show hand cursor
slide.addEventListener('click', () => {
// Redirect to the corresponding URL
if(slideLinks[index]) {
window.location.href = slideLinks[index];
}
});
});