JSFiddle - React, Tailwind, and code Playground

by Todd Levy

HTML

<script src="http://player.longtailvideo.com/jwplayer.js"></script>
<body>
    <div id="player"></div>
</body>

CSS

html, body {
		    height:100%;
		    width:100%;
		    padding:0;
		    margin:0;
		}
		#player {
		    height:100%;
		    width:100%;
		    padding:0;
		    margin:-3px;
		}

JavaScript

jwplayer("player").setup({
    file: "http://content.bitsontherun.com/videos/gSzpo2wh-486405.mp4",
    image: "http://content.bitsontherun.com/thumbs/gSzpo2wh-480.jpg",
    height: "100%",
    width: "100%",
    stretching: "exactfit",
    flashplayer: "http://player.longtailvideo.com/player.swf"
});