HTML5 video autoplay DOM change WebKit bug (opens in new tab)
WebKit/Blink has a bug where making a . This can prevent or stop video autoplay. . The hack fix is to re-trigger .play() on the video after the DOM change has been made. // make DOM change to video elem.appendChild( video ); // trigger .play() to resume autoplay for WebKit video.play(); See the Pen by David DeSandro (
Read the original article