Search code examples
flowplayer

current time not working in flowplayer (seeking issue)


<a href="javascript:seek(10)" ></a>

Please see below link I want to current time+ and current time- functionality

http://www.w3.org/2010/05/video/mediaevents.html


Solution

  • seek is a method on the flowplayer object, so you need to do something like this:

    flowplayer($(".myplayer")).seek(10);
    

    If you have a flowplayer with the class myplayer.