Skip to content

Instantly share code, notes, and snippets.

@gladkih
Created March 7, 2015 11:13
Show Gist options
  • Save gladkih/30ac13601f00acf7daae to your computer and use it in GitHub Desktop.
Save gladkih/30ac13601f00acf7daae to your computer and use it in GitHub Desktop.
Autoplay full screen video on ios
//force video to play on pages where bg video visible
$(function(){
var vid=$('#video video').get(0);
//try to force it to start automatically after a few secs
setTimeout(function(){
$('body').one('touchstart load',function(){
vid.play();
}).trigger('load');
},3000);
});//end jq losure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment