このコードに何か問題がありますか? Web ページの読み込み時に音声ファイルが再生されません。
$(document).ready(function() {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src','content/audio/tune.mp3');
audioElement.setAttribute('autoplay', 'autoplay');
//audioElement.load()
$.get();
audioElement.addEventListener("load", function() {
audioElement.play();
}, true);
audioElement.play();
});