It looks like you're new here. If you want to get involved, click one of these buttons!
var audio = document.createElement('audio');audio.src = 'sounds/test.ogg';audio.loop = true;audio.play();
document.body.innerHTML += "<audio autoplay loop><source src=\"sounds/test.ogg\" type=\"audio/ogg\"></audio>";
Comments
But maybe there is a better solution than this?...