JavaScriptを使用してイベントでサウンドを再生しようとしています
これを試した
<object height="100" width="100" data="sounds/cash.wav" id="cash"></object>
var thissound= document.getElementById("cash");
thissound.play();
そしてそれはうまくいきました。問題は、ブラウザに表示する要素がないので、試してみました
<object height="0" width="0" data="sounds/cash.wav" id="cash"></object>
and even
<object height="100" width="100" data="sounds/cash.wav" id="cash" style="display:none"></object>
そして、要素がnullであることを伝えるJSでエラーが発生しました..