NAVIGATION
ATTRIBUTION
getButterfly
Dublin, Ireland
All Content Copyright ©2019
getButterfly
The latest Chrome version has stopped video autoplay if the video is not muted. Firefox and the other browsers will soon follow suit. Here’s a quick way to mute the video and autoplay it when the page has loaded:
function toggleMute(element) {
element.muted = true;
element.play()
}
window.addEventListener('load', function () {
setTimeout(function () {
toggleMute(document.querySelector('video'));
}, 1000);
});
That’s it! Enjoy!
Find more JavaScript tutorials, code snippets and samples here or more jQuery tutorials, code snippets and samples here.