1
0
app/assets/js/unmuteVideo.js

11 lines
261 B
JavaScript
Raw Normal View History

2022-05-18 09:31:00 +00:00
$(document).ready(function(){
var video = document.getElementById("vjs_video_3_html5_api");
var timer = setInterval(()=>{
if(video.readyState === 4){
video.muted = false;
clearInterval(timer);
}
},5000);
});