I tried the following codes (with my own functionality)
(function (){
$(".video-front").show();
setTimeout(arguments.callee, 10000);
})();
form this post Calling a function every 60 seconds
and
setInterval(function(){
$(".video-AdClick-front").show();
}, 10000);
from this post What's the easiest way to call a function every 5 seconds in jQuery?
but still is not working, example i want to call function every 5 sec, when i add those codes that call function only one time after 5 sec do not call function every 5 sec?