I have an HTML 5 video in a div. I then have a custom play button - that works fine. And I have the video\'s visibility set to hidden on load and visible when the play b
According to the jQuery docs, calling toggle() without parameters will toggle visibility.
toggle()
$('#play-pause').click(function(){ $('#video-over').toggle(); });
http://jsfiddle.net/Q47ya/