JSFiddle - React, Tailwind, and code Playground
by kalmarsh80
HTML
<script src="http://player.longtailvideo.com/jwplayer.js"></script>
<button id='loadContent' style="cursor:pointer">Load content</button>
<p> </p>
<div id='container'>Loading the player ...</div>
CSS
body {
margin:20px;
font-family:Verdana;
font-size:10pt
}
JavaScript
$("#loadContent").click(function(){
jwplayer('container').load({
file: 'http://content.bitsontherun.com/videos/6O7cYVpH-1ahmry41.mp4'
}).play();
});
jwplayer('container').setup({
flashplayer: 'http://player.longtailvideo.com/player.swf',
height: 270,
width: 480
});