I want to make a sound during an event. It works with a PC, but not with a mobile phone. Any idea?
$(document).ready(function () {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', 'http:///music.mp3');
audioElement.play();
});
source
share