var video1;_x000D_
_x000D_
function onYouTubeIframeAPIReady(){_x000D_
player = new YT.Player("video1", {_x000D_
videoId: "id-number",_x000D_
width: 300,_x000D_
height: 200, _x000D_
playerVars: {_x000D_
"autoplay": 1, // and 0 means off_x000D_
"controls": 1,_x000D_
"showinfo": 0,_x000D_
"modestbranding": 0,_x000D_
"loop": 1,_x000D_
"fs": 0,_x000D_
"cc_load_policy": 0,_x000D_
"iv_load_policy": 3,_x000D_
},_x000D_
events: {_x000D_
'onReady': onPlayerReady_x000D_
}_x000D_
});_x000D_
}_x000D_
_x000D_
function onPlayerReady(event) {_x000D_
event.target.mute();_x000D_
event.target.setVolume(0); //this can be set from 0 to 100_x000D_
}
_x000D_
Remember that the sound will not be muted in IE and Safari.