Can anyone help me? Here is the JSFiddle ( http://jsfiddle.net/uupd4/ ).
$(document).ready(function() {
var video_src = '7100569';
var $video_wrapper = $('body');
var $video = $('iframe');
$video_vimeo = $f($video[0]);
$video_vimeo.addEvent('ready', vimeo_ready);
function vimeo_ready(){
console.log('ready');
$video_vimeo.addEvent('playProgress', onProgress);
}
function onProgress(data){
console.log('onProgress');
}
});
I did what the documentation says to add playProgress event only when the ready event is triggered.
Thanks