Showing 1 – 1 of 1 replies
orsonia

I have bought your theme and I need to […]

orsonia PURCHASED
8 years ago
Hi guys!
I have bought your theme and I need to run the slider automatic, I mean I need that slides in the slider run automatic. Is it possible?
thanks!
stepofweb
stepofweb SELLER
8 years ago
Hello orsonia,

Sure, add to your custon javascript code:

function timeout() {
setTimeout(function () {
jQuery("#slider a.next").trigger("click");
timeout();
}, 4000);
} timeout();

4000 = the delay in ms (4000 = 4 s)