Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.