JSFiddle - React, Tailwind, and code Playground
by salman
HTML
<script src="http://ajax.googleapis.com/ajax/libs/swfobject/2/swfobject.js"></script>
<div id="player">You need Flash player 8+ and JavaScript enabled to view this video.</div>
JavaScript
var ytplayer;
function onYouTubePlayerReady(playerId) {
ytplayer = $("#myvideo").get(0);
alert(ytplayer.getDuration());
}
var params = {
allowScriptAccess: "always"
};
var atts = {
id: "myvideo" // HTML id of the flash player created by swfobject
};
swfobject.embedSWF('http://www.youtube.com/v/4TSJhIZmL0A?enablejsapi=1&version=3', 'player', 425, 344, "8", null, null, params, atts);