
JW 6.x bug on HTML5 mode - seek inside onSeek event does nothing
Hey there,
I am facing a problem that it is definitely a bug of JWPlayer when it works in HTML5 (in Flash mode everything works properly). I am using JW 6.8 but it is not fixed in 6.9 version as well.
The problem is that when I declare an "onSeek" event and calling seek function inside it nothing happens. For example see the code below, which normally on the first seeking of the player with the use of the control bar, video should seek at second 120....but it doesn't :
var is_seeking = 0;
jwplayer().onSeek(function(event){
if(is_seeking == 0){
is_seeking = 1;
jwplayer().seek(120); //THIS DOES NOTHING AT ALL WHEN JW IS IN HTML5 MODE!!!!
return false;
}
}
Thanks a lot in advance!