
Responsiveness with 7 not working?
I'm trying to set up a video as per the article on here, but I can not get the width to agree with my settings.
For instance this test page is definitely not 750px wide.
What am I missing?
Thanks!
Test page: http://jpmeyer.com/test.php
Code:
<html>
<head>
<script type="text/javascript" src="https://content.jwplatform.com/libraries/mmiOhk3u.js"></script>
</head>
<body>
<div style="width:750px;border:solid 5px;" id="myjwp">Loading the player...</div>
<script type="text/javascript">
var playerInstance = jwplayer("myjwp");
playerInstance.setup({
playlist:[{
image:"https://ourvideosite.com/data/3199-reception_002.MTS.jpg",
sources:[
{file:"https://ourvideosite.com/data/3199-reception_002.MTS.mp4",label:"1080p"},
{file:"https://ourvideosite.com/data/3199-reception_002.MTS_480p.mp4",label:"480p"}
],
title:"John P. Meyer, DDS reception area"
}],
aspectratio: "4:3",
width:"100%",
mute:"true",
autostart:"true",
startparam:'start'
});
</script>
</body>
</html>