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

Max instances epr page


Hi,

We have a page that loads more records when you scroll and hit the bottom of the page. Works fine. However, randomly it stops making any more instances. It does not throw any errors or message, and does not even show the new player instances. Our "Loading the player..." stays and never loads the player. Any ideas?

The videos play fine when they are on their own page with jwplayer. So the videos and filenames are fine.

My initial thought was there may be a max per page? We are hitting around 608- before this issue occurs. Without any console errors I can't even debug. Any help is appreciated.

1 Community Answers

George

JW Player Support Agent  
0 rated :

No limits that I know of from the JW Player side, but the browser won’t want too many. Have you tried removing the player when it’s no longer visible?

if (player != undefined) {
player.stop();
player.remove();
player = undefined;
}

This question has received the maximum number of answers.