HTML video tag audio not working in safari, what could be the reason?
<video id="vid" width="100%" height="1000" data-loop="true" playsinline autoplay muted preload="metadata" data-fill-mode="fill" class="ms-slide-bgvideo">
<source src="image/video.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
</video>
js control
$('.video .icon .on').click(function(){
$('video').prop('muted', true);
})
$('.video .icon .off').click(function(){
$('video').prop('muted', false);
})