Expected Behavior
no errors and the ended event to fire every time.
Actual Behavior
loads of errors and ended event randomly not firing.
ERRORS Once the video starts playing.
VM68727:1 Uncaught SyntaxError: Unexpected token o in JSON at position 1
at JSON.parse ()
at onMessageReceived (:8:363)
onMessageReceived @ VM68553:8
VM68553:9 Uncaught TypeError: Cannot read properties of undefined (reading 'videoPlayed')
at onMessageReceived (:9:223)
onMessageReceived @ VM68553:9
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot set properties of undefined (setting 'timePercentComplete')
at Object.onPlayProgress (:11:459)
at onMessageReceived (:8:502)
onPlayProgress @ VM68553:11
onMessageReceived @ VM68553:8
VM68553:11 Uncaught TypeError: Cannot read properties of undefined (reading 'timePercentComplete')
at Object.onPause (:11:224)
at onMessageReceived (:9:505)
onPause @ VM68553:11
onMessageReceived @ VM68553:9
VM68553:10 Uncaught TypeError: Cannot read properties of undefined (reading 'videoCompleted')
at onMessageReceived (:10:46)
onMessageReceived @ VM68553:10
VM68553:11 Uncaught TypeError: Cannot read properties of undefined (reading 'timePercentComplete')
at Object.onPause (:11:224)
at onMessageReceived (:9:505)
Steps to Reproduce
I have three vimeo videos on a page all in iframes with different IDs. The Videos are embedded into an fancybox pop up. the ended event is triggered when the popup is opened. see function below.
function trackVideo(parent){
var iframe = $('#dop_quiz_popup_'+parent).find('iframe');
var player = new Vimeo.Player(iframe);
player.on('ended', function() {
document.querySelector('#dop_quiz_popup_'+parent+' .nextBtn').click();
});
}
What should be doing is as the video ends it triggers a click on a hidden button to open the next popup with the next iframe in it. It works fine for the first two popups but on the third the ended event will not fire.???
Can you provide a link to this page so you issue can be replicated? It looks like you are trying to allocate values from an undefined source.
Possibly related to #792, which contains a code pen to reproduce the issue.