how to play jquery audio

Solutions on MaxInterview for how to play jquery audio by the best coders in the world

showing results for - "how to play jquery audio"
Claudio
15 Feb 2016
1$('document').ready(function() {
2  const audio = new Audio("source.mp3" );
3  audio.play();
4  });