0
How to autoplay videos on chrome browser?
So I was making a rickroll html file, but I want to be like as soon as you load the file it starts auto playing. But chrome does not allow that for some reason. Any tips?
1 Resposta
0
window.onload = () => {
document.getElementById('video').play;
}