$('video').click(function() { if(this.paused){ this.play(); } else { this.pause(); } });
But that will not work. You will want to place an invisible div (with an invisible PNG in it) above the video to receive click commands.
Or you can use a solution like http://videojs.com/
source share