html5 video player button
with the video component control disable and having a single custom button to control the play and pause of the video.
what should be the exact format of the code or script for it.
//===========
var _this = this;
_this.button_play.on('click', function () {
$('#videoplayer')[0].play();
});
//===========
