Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Slideshow Pause button fail Reply To: Slideshow Pause button fail

#278458
muratkezli
Participant

Firstly write a new function

function stopSlide(){
clearTimeout(showSlides);
showSlides = null;
}

then call button onclick like onclick=”stopSlide()”