Note that there are some explanatory texts on larger screens.

plurals
  1. POjPlayer doesn't support IE 7,8,9
    primarykey
    data
    text
    <p>I am trying to embed a video file from a url using jPlayer.</p> <p>This is the code i am using.This works totally fine in the chrome and Firefox but not in Internet Explorer 7,8 or 9.Video box is shown and it shows an error message under the video box.</p> <p><a href="http://www.jplayer.org/latest/developer-guide/#jPlayer-compatibility" rel="nofollow">jPlayer Developer Guide</a> says that it supports IE 7 and above.</p> <p>So What can be the issue?</p> <p>I tried html5 vidoe tag for this but IE 8 and below versions doesn't support that also.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;!--Stylesheets--&gt; &lt;link rel="stylesheet" href="css/styles.css"/&gt; &lt;!--jQuery--&gt; &lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"&gt;&lt;/script&gt; &lt;!--jPlayer--&gt; &lt;script src="js/jquery.jplayer.min.js"&gt;&lt;/script&gt; &lt;script src="http://html5shim.googlecode.com/svn/trunk/html5.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div style="margin-left:50px;" &gt; &lt;a href="https://www.google.com"&gt; &lt;img src="back.jpg" width="64px" height="64px" alt=""/&gt; &lt;/a&gt; &lt;/div&gt; &lt;!--container for everything--&gt; &lt;div id="jp_container_1" class="jp-video jp-video-360p"&gt; &lt;!--container in which our video will be played--&gt; &lt;div id="jquery_jplayer_1" class="jp-jplayer"&gt;&lt;/div&gt; &lt;!--main containers for our controls--&gt; &lt;div class="jp-gui"&gt; &lt;div class="jp-interface"&gt; &lt;div class="jp-controls-holder"&gt; &lt;!--play and pause buttons--&gt; &lt;a href="javascript:;" class="jp-play" tabindex="1"&gt;play&lt;/a&gt; &lt;a href="javascript:;" class="jp-pause" tabindex="1"&gt;pause&lt;/a&gt; &lt;span class="separator sep-1"&gt;&lt;/span&gt; &lt;!--progress bar--&gt; &lt;div class="jp-progress"&gt; &lt;div class="jp-seek-bar"&gt; &lt;div class="jp-play-bar"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;!--time notifications--&gt; &lt;div class="jp-current-time"&gt;&lt;/div&gt; &lt;span class="time-sep"&gt;/&lt;/span&gt; &lt;div class="jp-duration"&gt;&lt;/div&gt; &lt;span class="separator sep-2"&gt;&lt;/span&gt; &lt;!--mute / unmute toggle--&gt; &lt;a href="javascript:;" class="jp-mute" tabindex="1" title="mute"&gt;mute&lt;/a&gt; &lt;a href="javascript:;" class="jp-unmute" tabindex="1" title="unmute"&gt;unmute&lt;/a&gt; &lt;!--volume bar--&gt; &lt;div class="jp-volume-bar"&gt; &lt;div class="jp-volume-bar-value"&gt;&lt;span class="handle"&gt;&lt;/span&gt;&lt;/div&gt; &lt;/div&gt; &lt;span class="separator sep-2"&gt;&lt;/span&gt; &lt;!--full screen toggle--&gt; &lt;a href="javascript:;" class="jp-full-screen" tabindex="1" title="full screen"&gt;full screen&lt;/a&gt; &lt;a href="javascript:;" class="jp-restore-screen" tabindex="1" title="restore screen"&gt;restore screen&lt;/a&gt; &lt;/div&gt;&lt;!--end jp-controls-holder--&gt; &lt;/div&gt;&lt;!--end jp-interface--&gt; &lt;/div&gt;&lt;!--end jp-gui--&gt; &lt;div class="jp-no-solution"&gt; &lt;span&gt;Update Required&lt;/span&gt; Here's a message which will appear if the video isn't supported. A Flash alternative can be used here if you fancy it. &lt;/div&gt; &lt;/div&gt;&lt;!--end jp_container_1--&gt; &lt;!--instantiate--&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ $("#jquery_jplayer_1").jPlayer({ ready: function () { $(this).jPlayer("setMedia", { webmv: "Big_Buck_Bunny_Trailer.webm", poster: "Big_Buck_Bunny_Trailer_480x270.png" }); }, swfPath: "js", supplied: "webmv", size: { width: "570px", height: "340px", cssClass: "jp-video-360p" } }); }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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