Hi i have a jPlayer embeded in a page
$(document).ready(function(){
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: playList[0]
}).jPlayer("play");
},
swfPath: "js",
supplied: "mp3"
});
changeSong(0);
$("#jquery_jplayer_1").bind($.jPlayer.event.ended + ".jp-repeat", function(event) { // Using ".jp-repeat" namespace so we can easily remove this event
});
});
Here the variable array playlist is previously defined. Also i am binding an event to change the song when it reaches its end.
These things work perfectly.
What i want is to play the song not from begining but from say 50% and it should auto play.
the
.jPlayer("play");
part in the code auto plays the thing. How do i move it to 50%? it should be done as soon as it starts to play without the user noticing it.