I need to play an audio in the execution of the following section, where it displays the data found in a query:
// Verifica se o Ajax realizou todas as operações corretamente
if(req.readyState == 4) {
if (req.status == 200) {
// Resposta retornada pelo PesquisaRomaneio.php
var resposta = req.responseText;
// Abaixo colocamos a(s) resposta(s) na div resultado
document.getElementById('resultado').innerHTML = resposta;
// Toca audio se encontrou
var snd = new Audio("../images/alert.mp3");
snd.play();
} else {
document.getElementById('resultado').innerHTML = "Erro: " + req.status;
}
setTimeout(buscarRomaneio, segundos * 1000);
}
I tried to use the code below but did not run. How can I fix this?
var snd = new Audio("../images/alert.mp3");
snd.play();