You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<script>
var vid = document.getElementById("myVideo");
function toggleMute(el) {
var vidId = el.getAttribute('controlledVideoId');
var vid = document.getElementById(vidId);
vid.muted = !vid.muted;
el.src = vid.muted ? "../volumeOff.png" : "../volumeOn.png";
}
</script>