JSFiddle - React, Tailwind, and code Playground

by cstigler

HTML

<div class="container">
    <div>
        <iframe id="player" src="http://player.vimeo.com/video/7100569?api=1" width="540" height="304" frameborder="0"></iframe>
        <button id="seek">Seek 0</button>
    </div>
</div>

JavaScript

(function() {
	var player = document.getElementById('player');
    var url = player.src.split('?')[0];

	$('#seek').on('click', function(e) {
        player.contentWindow.postMessage(JSON.stringify({ method: 'play' }), url);
        player.contentWindow.postMessage(JSON.stringify({
            method: 'seekTo',
            value: 0
        }), url);
	});
})();