This site has 3 audio player – all hidden – I’ve set #audioPlayer3 to play inside the page’s onReady() function.
In the published site, it does not play. How can I make it play as soon as the page loads?
$w.onReady( function () {
let Alevel= 3 ;
$w( “#audioPlayer” +Alevel).play();
// $w( “#audioPlayer3” ).play(); // even this line does not seem to do the job
});