Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

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.

1 Community Answers

George

JW Player Support Agent  
0 rated :

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"}]);
})

This question has received the maximum number of answers.