Web ページでオーディオを再生するために jplayer を使用しています。ページが読み込まれると、インスペクターとプレーヤーは正常に読み込まれますが、バインド機能は機能しません。後でコンソールから呼び出すと、正常に動作します。
$(document).ready(function(){
myCirclePlayer = new CirclePlayer("#jquery_jplayer_1",
{ mp3: flatplaylist[0] },
{ supplied: "mp3", }
);
$("#jplayer_inspector").jPlayerInspector({jPlayer:$("#jquery_jplayer_1")});
//does not work from here, but will work if I put this in the console.
$(myCirclePlayer.audio).bind('ended',function (){ playNextFile(); });
});