1$("video").prop('muted', true);
2
3$(".mute-video").click(function () {
4 if ($("video").prop('muted')) {
5 $("video").prop('muted', false);
6 $(this).addClass('unmute-video'); // changing icon for button
7
8 } else {
9 $("video").prop('muted', true);
10 $(this).removeClass('unmute-video'); // changing icon for button
11 }
12 console.log($("video").prop('muted'))
13});