document.addEventListener("DOMContentLoaded", function () { let index = 0; const testimonials = document.querySelectorAll(".testimonial"); const image = document.getElementById("testimonial-img"); if (!testimonials.length || !image) { console.error("Error: Testimonials or image element not found!"); return; // Stop execution if elements are missing } const images = [ "https://yourwebsite.com/image1.jpg", "https://yourwebsite.com/image2.jpg", "https://yourwebsite.com/image3.jpg" ]; function showTestimonial(i) { testimonials.forEach(function (t, idx) { t.classList.remove("active"); if (idx === i) { t.classList.add("active"); } }); image.src = images[i]; // Change Image } function nextSlide() { index = (index + 1) % testimonials.length; showTestimonial(index); } setInterval(nextSlide, 5000); // Auto-slide every 5 seconds });
Testimonial Image

"This is the first testimonial. Absolutely amazing!"

John Doe

CEO, Tech Company

"Second testimonial, a wonderful experience!"

Jane Smith

Founder, Creative Studio

"Third testimonial, truly outstanding service!"

Michael Brown

Marketing Director
Carousel

Testimonials