How do I set the youtube embedded player to unmute upon clicking it. You can see the embedded player i\'m referring to at http://www.harvestarmy.org home page. It\'s the one
This works. But unfortunately the pause icon fades in when the video is clicked. Even the video continues to run it is not a clean solution.
I fixed it by placing a HTML: CSS: Javascript: This works out well for me.click()
function to unmute the video.
.video-container {
position: relative;
width: 640px;
height: 390px;
}
.video-dummy {
width: 640px;
height: 390px;
position: absolute;
}
$('.video-dummy').click(function(){
player.unMute();
});