I am trying to create a mute/unmute button, I'm quite new to jquery so it would be helpful if anyone could give me any pointers:
$("#dinner").click(function() {
var bool = $("#player").muted;
$("#player").attr("muted",!bool);
});
I am trying to create a mute/unmute button, I'm quite new to jquery so it would be helpful if anyone could give me any pointers:
$("#dinner").click(function() {
var bool = $("#player").muted;
$("#player").attr("muted",!bool);
});
fixed it, the 'muted' attribute is actually a property: