I've read that you cannot autoplay videos, but I'm noticing that my onReady function is not being called on iPad. It works on all other browsers. Is this another know issues?
Here's my loading code:
player = new YT.Player('videoDiv', {
events: {
'onReady': onPlayerReady,
'onStateChange': youtubePlayer.onPlayerStateChange
}
});
onPlayerReady has an alert which does not show up on iPad, it does on all other broswers. Also it seems the player variable is not what I'm expecting. I get an [Object object] but doing player.playVideo or player.queVideoById() both cause errors. Are these also known bugs?
What does work on iPad?
Thanks!