Note that there are some explanatory texts on larger screens.

plurals
  1. POWhy does this movie not load in IE when hosted on web?
    text
    copied!<p>I create a simple video elements within an HTML page . Here the code :</p> <pre><code>&lt;!DOCTYPE html&gt; &lt;html lang="ar"&gt; &lt;head&gt; &lt;meta charset="utf-8"/&gt; &lt;script src="js/jquery-1.8.3.min.js"&gt;&lt;/script&gt; &lt;style&gt; body{ background:gray; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } #vid_container {position:absolute;left:50%;top:50%;visibility:visible;text-align:center;z-index:501;} #vid_background {position:absolute;left:-350px;top:-270px;width:700px;height:540px;background:url(datas/vid_bg.png);z-index:501;} #vid_loader {position:absolute;left:-320px;top:-240px;text-align:center;z-index:502;} #vid_button {position:absolute;left:-346px;top:-266px;width:30px;height:30px;background:url(datas/vid_btn.png);z-index:503;cursor:pointer;} &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id='vid_container'&gt; &lt;div id='vid_background'&gt;&lt;/div&gt; &lt;video id='vid_loader' width="640" height="480" preload controls&gt; &lt;source src="my_video.mp4" type="video/mp4"&gt; &lt;/video&gt; &lt;div id='vid_button'&gt;&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>When i test the code in INTERNET EXPLORER on local (my computer) it works fine and the movie load . but when i host it in my FTP and test via internet , it doesn't load (where it loads on all other browsers)</p> <p>You can test your self : (open this link with other browsers , it will work fine but with ie it's not )</p> <p><a href="http://ajnadeen-me.com/eBook/vidbug/index.html" rel="nofollow">http://ajnadeen-me.com/eBook/vidbug/index.html</a></p> <p>The movie is MP4 compression H.264.</p> <p>Thanks .</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload