Answers for "mute video html"

0

mute video javascript

var vid = document.getElementById("myVideo");
vid.muted = true;
Posted by: Guest on August-23-2020
0

mute video html

<!-- Add the `muted` tag -->
<video muted>
  ...
</video>
Posted by: Guest on August-03-2021

Browse Popular Code Answers by Language