Consider this
player = new YT.Player(divId, {
height: '100%',
width: '100%',
videoId: 'xxx',//
playerVars: { 'autoplay': 0, 'controls': 0, 'enablejsapi': 1, 'fs': 1, 'showinfo': 0, wmode: "opaque", 'rel': 0 }
...
Now the video appears without any controls, still the play/pause button is there. What playerVars option will hide them?
How do it i put a custom play/pause button and get rid of those by youtube the way one hides controls with 'controls': 0 ?