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

I have this to show a video modal which works well in all browsers except IE (specifically IE8):

//Video
$("#siteNav li.nav5 a").click(function(){
   $("#video").fadeIn();
   $(".commercial").get(0).play();
   return false;
});

$("#video").click(function(event){
   $(this).fadeOut();
   $(".commercial").get(0).pause();
   return false;
});

If I click this, IE says "Error on page" and reloads.

If I comment out the line $(".commercial").get(0).play/pause(); the error doesn't show.

Any ideas how I can write this with an IE-friendly alternative?

I should also mention I use HTML5 video for compatible browsers, and Flowplayer/Flash for IE.

share|improve this question
What is .commercial applied to? – ShankarSangoli Aug 8 '11 at 18:52
.commercial is simply a class i assign to the movie so i can: $(".commercial").click(function(event) { event.stopPropagation(); }); – Yahreen Aug 8 '11 at 18:54
what is that movie? HTML5 Audio/Video? Can you post the markup? – ShankarSangoli Aug 8 '11 at 18:55
jsfiddle.net/FqffT – Yahreen Aug 8 '11 at 18:59

1 Answer

up vote 0 down vote accepted

If you are using flowplayer for IE browser then try below code.

//Video
$("#siteNav li.nav5 a").click(function(){
   $("#video").fadeIn();
   if($.browser.msie)
     $f($(".commercial").get(0)).play();
   else
     $(".commercial").get(0).play(); 
   return false;
});

$("#video").click(function(event){
   $(this).fadeOut();
   if($.browser.msie)
     $f($(".commercial").get(0)).pause();
   else
     $(".commercial").get(0).pause(); 
   return false;
});
share|improve this answer
@Yahreen - Try my answer hope that helps – ShankarSangoli Aug 8 '11 at 19:01
thanks, that did it. – Yahreen Aug 8 '11 at 19:02
Could you explain why that is? – Yahreen Aug 8 '11 at 19:03
Since you are using flowplayer in case of IE, you have to get the flowplayer instance and then call play/pause method on it. Don't forget to mark this as an answer thanks. – ShankarSangoli Aug 8 '11 at 19:06
Ah, thanks. For anyone else looking for more info: flowplayer.org/documentation/api/index.html#flowplayer – Yahreen Aug 8 '11 at 19:19

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.