I'm trying to include some videos on a website I help to maintain using JW Player, and some internet explorer users are reporting that they don't see the video box show up at all (i.e. the space where the video player should be is completely blank, not displaying an error about flash version or anything like that).
Here is the code that I'm using to initialize the video player:
<div id='player_5465'></div>
<script type="text/javascript">
jwplayer("player_5465").setup({
file: "http://bmt.umn.edu/video/Bench-to-bedside Jakubtolar 480x270.mp4",
width: "480px",
height: "270px",
image: "http://bmt.umn.edu/video/tolar-b2b-screenshot.png",
});
</script>
</div>
When I try to test this with IE7 (I'm using software called IETester) it gives me a script error and asks if I want to keep running scripts on the page. I say yes, but then I don't see a video box at all.
The video should be viewable at the bottom of http://bmt.umn.edu/why-choose-us/collaboration-towards-new-treatments.php#Tolar-bench-to-bedside
Any ideas what I'm doing wrong?
John