There's a jitter during player sorting. This occurs because the container for the player is removed, then added back in. A few suggestions to deal with that.
- Create a transition. The reload time is short, so it may not be a good idea to use it, but it might help.
- Create a blank DIV element with the same size as the previously destroyed div, that way, the page contents will not reshift during DOM drawing.
There's a jitter during player sorting. This occurs because the container for the player is removed, then added back in. A few suggestions to deal with that.