|
It was kind of an embarrassing moment.....Commenting out the below was the main fix!
/*if (IsIE == 0)
{
$('#trailer').get(0).play();
$('video').bind('ended', function(){
moveslider();
video.currentTime = 0;
trackEvent._trackEvent('globe', 'trailer', 'end');
trackEvent2._trackEvent('globe', 'trailer', 'end');
});
$('video').bind('play', function()
{
clearInterval(inter);
playvid = false;
trackEvent._trackEvent('globe', 'trailer', 'play');
trackEvent2._trackEvent('globe', 'trailer', 'play');
});
} else {
createSWFobject();
$('#next-button').css({ 'top' : '310px' , 'margin-top' : 0 });
$('#prev-button').css({ 'top' : '310px' , 'margin-top' : 0 });
}*/
|