ID:2519729
 
Code:
/var/title_screen_html = {"
<html>

<head>

<style>
html { margin:0px; padding:0px; overflow:hidden; -ms-overflow-style:none; z-index:1 }
.shuttertop { position:absolute; left:0px; top:0px; height:20%; width:100%; background-color:black; z-index:2; }
.shutterbottom { position:absolute; left:0px; top:80%; height:20%; width:100%; background-color:black; z-index:2; }
iframe { position:absolute; left:0px; top:5%; z-index:1 }
.overlay { position:absolute; left:1px; top:1; height:100%; width:100%; z-index:3; background-color:white; opacity:0.01; }
.fadeoverlay { position:absolute; left:0px; top:0; height:100%; width:100%; z-index:4; background-color:black; opacity:1; }
</style>
</head>

<body onload="fadeOut(document.getElementById('fading'))">

<script type="text/javascript">

function fadeOut(el) {
var i = 2;
var timer = setInterval(function () {
if (i <= 0.01){
clearInterval(timer);
el.style.opacity = 0.01;
el.style.filter = 'alpha(opacity=' + 0.01 * 100 + ")";
}
if(i < 1) {
el.style.opacity = i;
el.style.filter = 'alpha(opacity=' + i * 100 + ")";
}
i -= 0.02;
}, 100);
}

</script>

<div class="fadeoverlay" id="fading"> </div>

<div class="shuttertop"> </div>
<center><img src = "saga.png"></center>
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/rJAGjKKDy_Q?start=0&loop=1&rel=0&autoplay=1&wmode=transparent&controls=0" frameborder="0"></iframe>

<div class="shutterbottom"> </div>
</body>
</html>
"}


Problem description:Its a video that loads up as soon as the client pops up but when the client pops up I get a script error

http://prntscr.com/pqqptf


Inside your <head>, try adding:
    <meta http-equiv="X-UA-Compatible" content="IE=edge">