I need to start a video with a 5 second delay after loading the page.
On desktop browser i solved in this way:
setTimeout(function(){ jQuery('video').trigger('play'); }, 5000);
The problem is that the code dosen't work on mobile browser.
Could anyone help me?