I have a function that plays a video when I click on the poster image displayed in the player and it seems to work :
var video = document.getElementById(\'pl
This is the easiest solution
this.on("pause", function () { $('.vjs-big-play-button').removeClass( 'vjs-hidden' ).css('display', 'block'); this.one("play", function () { $('.vjs-big-play-button').addClass( 'vjs-hidden' ).css('display', ''); }); });