javascript - HTML5 video player seek bar not working -


i have embedded html5 video player in application. when open web page first time, video player seek bar doesn't work. if refresh page , seek video works fine.

    function seektotime(value) {     var vidplayer = $("#myvideo")[0];     var seektotime = value;     if (seektotime < 0 || seektotime > vidplayer.duration)         return;       vidplayer.currenttime = seektotime;     $("#myvideo")[0].play();  } 


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -