Skip to content Skip to sidebar Skip to footer

Jquery .play() Doesn't Work On Mobile Safari

I'm using JQuery and I tried this code $('#playBtn1')

Solution 1:

That does not work because autoplay (and preloading) is disabled in safari on iOS.

In Safari on iOS (for all devices, including iPad), where the user may be on a cellular network and be charged per data unit, preload and autoplay are disabled.

That means that you will always need "User Interaction" to start video playback.

Post a Comment for "Jquery .play() Doesn't Work On Mobile Safari"