Utilizing jwPlayer for multiple videos on a micro site. If the user enters fullscreen, I have it exit fullscreen mode at the conclusion of the video In the video's setup, this combination works on every browser except Internet Explorer (the events part):
<script>
jwplayer('vidContent').setup({
autostart: 'false',
image: "lib/vid/video-poster.jpg",
skin: "lib/swf/bekle/bekle.zip",
modes: [
{type: 'flash', src: 'lib/swf/player.swf'},
{type: 'html5'}
],
file: "lib/vid/video.m4v",
events: {
if (event.position > 70) {
jwplayer("vidContent").stop();
jwplayer("vidContent").remove();
document.getElementById("vidContent").remove();
}
}
}
});
</script>
Have not found a way to make IE exit. Any idea of a way to kill it in IE? I don't have the option of utilizing jQuery, unfortunately.