
Embedding two videos on a page
Asking the community for advice. I am trying to embed two videos on one page and I can't get them to work.
I am using the following script:
<div id="myElement">Loading the player ...</div>
<!-- JW Player ver. 6.12 -->
<script type="text/javascript">
jwplayer("myElement").setup({
file: "http://www.bdot-inc.com/video-files/Monymusk.mp4",
image: "http://www.bagpipe-tutorials.com/images/video-cover-2.jpg",
skin: "bekle",
title: "Monymusk",
width: "100%",
aspectratio: "16:9",
});
</script>
<div id="myElement2">Loading the player ...</div>
<!-- JW Player ver. 6.12 -->
<script type="text/javascript">
jwplayer("myElement2").setup({
file: "http://www.bdot-inc.com/video-files/thick-lies-the-mist.mp4",
image: "http://www.bagpipe-tutorials.com/images/video-cover-2.jpg",
skin: "bekle",
title: "Thick Lies the Mist on Yonder Hill",
width: "100%",
aspectratio: "16:9",
});
</script>
You can view the page here: http://www.bagpipe-tutorials.com/monymusk.html
Greg