
How to load URL on video "complete"
How can I automatically load a URL upon completion of a video? I assume I would use jwplayer().on('complete') but I am not clear on how to implement this.
How can I automatically load a URL upon completion of a video? I assume I would use jwplayer().on('complete') but I am not clear on how to implement this.
Why load the video after the player has completed instead of adding the video to the playlist?
Else, you’d be better off using:
jwplayer().on(‘playlistComplete’,function(){
jwplayer().load([{file:"YOUR_STREAMING_URL"}]);
})