Reputation: 2245
I have such jwplayer video on my page:
jwp=jwplayer('video').setup({
file: '/assets/video/video.mp4',
height: 480,
width: 640,
autostart: true
});
As it said here it should start, when Page loads. When I run it on Ipad it doesn't starts automatically, but I can run it by clicking play button. It is not on page actually, it is in tab of tabbed pane. Can this be problem?
Upvotes: 1
Views: 90
Reputation: 2245
Beware that autostart does not work on mobile device
from docs
Upvotes: 2