volume=0 doesn't seem to be supported anymore.
Does anyone know how i can mute my iframe now in year of 2017?
When i click unmute icon, mute icon should appear and video should be muted. (and the other way around)
This is what iv tried thus far:
//Mute-Unmute Music
$('#unmute').on('click', function() {
$("#unmute").hide();
$("#mute").show();
$("#iframe").attr("volume", "0");
});
$('#mute').on('click', function() {
$("#mute").hide();
$("#unmute").show();
$("#iframe").attr("volume", "1");
});
So your code should look like this: