sitecore - Brightcove video once appears on page load then disappear immediately in IE browser? -


i working brightcove video, working fine in firefox , chrome in ie appears once on page load disappeared immediately, means video not showing in ie browser.

what reason behind this?

<script type="text/javascript"> var player; var modvp;  function mytemplateloaded(experienceid) {     player = brightcove.api.getexperience(experienceid);     modvp = player.getmodule(brightcove.api.modules.apimodules.video_player);      $('.stillimage').stop().fadeout(150);     $('.brightcoveexperience').stop().fadeout();  }  $('.video_resource_container .video_rotator .slideshow ul li:first').addclass('active-vd');  $('.video_resource_container .video_rotator .slideshow ul li input').click(function () {     $('.video_resource_container .video_rotator .slideshow ul li').removeclass('active-vd');     $(this).parent().addclass('active-vd'); });  function ontemplateready(evt) {  }  function onmediacomplete(videoid, title, desc) {     $('.video_title').empty();     $('.video_title').html(title);     $('.video_para').empty();     $('.video_para').html(desc);     modvp.loadvideobyid(videoid);         }  </script> 

i have solved issue. remove these script

$('.stillimage').stop().fadeout(150);  $('.brightcoveexperience').stop().fadeout();  

from mytemplateloaded function.


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -