I have a HTML5 video that has a poster and a CSS play overlay button. I am trying to get the video to load once it has ended so that it shows the poster and the play overlay button again.
I have tried the following code but get a Parser error on the last line, can anybody help me and let me know what it is I am doing wrong!?
$(document).ready(function() {
$('.video').parent().click(function () {
if ($(this).children(".video").get(0).paused) {
$(this).children(".video").get(0).play();
$(this).children(".playpause").fadeOut();
} else {
$(this).children(".video").get(0).pause();
$(this).children(".playpause").fadeIn();
}
});
var video= $(".video").get(0);
video.addEventListener('ended',function () {
video.load();
$(".playpause").show();
}, false);
});