there is a list of divs, an animation on hover
hangs on each of them, the list is sorted every 5 seconds, a div with the exposed class is thrown to the beginning:
$('#list').prepend($('#list .online'));
if you leave the mouse on the first element, once every 5 seconds, the animation is reset and resumes
Is it possible to somehow freeze the hover
before sorting in order to avoid blinking?
added:
example of the problem site implementation: https://jsfiddle.net/gwqn0cd0/