No testimonials found.
"; return; } const item=testimonials[current]; slider.innerHTML=` `; } function strip(html){ const div=document.createElement("div"); div.innerHTML=html; return div.textContent.trim(); } document.getElementById("nextTestimonial").onclick=()=>{ current++; if(current>=testimonials.length){ current=0; } render(); }; document.getElementById("prevTestimonial").onclick=()=>{ current--; if(current<0){ current=testimonials.length-1; } render(); }; setInterval(()=>{ if(testimonials.length<=1) return; current++; if(current>=testimonials.length){ current=0; } render(); },5000); });