Javascript: Play/pause Not Working In Carousel?
I have got a script which runs a carousel in the site. This is the script which is doing the work. And I need to add a play/pause button in there. User @gskartwii has helped me in
Referencing from other question you asked, if you have a button:
<button type="button" onclick="paused=true;">Pause</button>
then play button should be
<button type="button" onclick="paused=false;">Play</button>
Post a Comment for "Javascript: Play/pause Not Working In Carousel?"