setInterval('playSound()',2000);
function playSound(){
var sound=new Audio('song.mp3');
sound.play();
}
これはクロムでは機能しますが、iPad アプリでは機能しません。