Вчера я опубликовал вопрос о плагине jQuery для YouTube. Исправив эту проблему, я заметил, что использование этого плагина не загружает видео в Internet Explorer 7 или 8.
Я сделал несколько мелких изменений и добавил код jsfiddle .
Я включаю объект SWFObject, который, по его словам, необходим для просмотра в IE, но по какой-то причине он не загружает видео.
У кого-нибудь есть идея?
HTML
<div id="player"></div>
<div class="test">
<p>Thank you for watching the video.</p>
<p>Your Voucher Code is: <br /><br /><span>ABCDEFG</span></p>
</div>
JavaScript
jQuery(document).ready(function() {
jQuery('.test').hide();
});
jQuery("#player").tubeplayer({
width: 600, // the width of the player
height: 450, // the height of the player
allowFullScreen: "true", // true by default, allow user to go full screen
swfobjectURL: "http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js",
loadSWFObject: true, // if you include swfobject, set to false
initialVideo: "VIDEO_ID", // the video that is loaded into the player
preferredQuality: "default",// preferred quality: default, small, medium, large, hd720
onPlay: function(id){}, // after the play method is called
autoPlay: true,
onPause: function(){}, // after the pause method is called
onStop: function(){}, // after the player is stopped
onSeek: function(time){}, // after the video has been seeked to a defined point
onMute: function(){}, // after the player is muted
onUnMute: function(){}, // after the player is unmuted
onPlayerEnded: function(){$('#player').hide(); $('.test').show(); }});