Generation

generate functionThu, 18 May 2023

ventana modal con sonido

function playSound() { var audioElement = document.createElement('audio'); audioElement.setAttribute('src', '../sound/beep.mp3'); audioElement.setAttribute('autoplay', 'autoplay'); audioElement.addEventListener('onended', function() { this.currentTime = 0; this.play(); }, false); audioElement.play(); }

Want to kickstart your project?Use the new AI Studio to create your code