So I have in my javascript an if statement. When it returns true it opens an alert box and plays an alarm sound. The problem is that the sound doesn\'t play until I hit th
Preload your audio file in the html beforehand like :
if(x > 10) { document.getElementById('xyz').play(); alert("Thank you!"); }
This should surely work.