Oh, wait - I see. Here was the behavior I was trying to get out of playhead:
Whether the media plays from that point depends on its current state. ie., If it was playing, play continues from the new play-head. If it was paused, the media is cued to the new play-head position.
So yeah, I have play and pause with seconds in my script - the problem I've been had since posting is being unclear how to check if the media is playing - I stuck my play statements in an if statement:
if( $.jPlayer.event.playing ) {
$("#audioPlayer").jPlayer( "pause", (eval("slideScript." + nextpage[0].id + ".start")) );
$("#audioPlayer").jPlayer( "play");
console.log("pause and play");
} else {
$("#audioPlayer").jPlayer( "play", (eval("slideScript." + nextpage[0].id + ".start")) );
console.log("pause");
}
But regardless of the state of play (playing or paused) the $.jPlayer.event.playing selects, I'm guessing because the event is declared, but you can't use the event as a check of state (which as I type it makes sense, duh)
Looking over the docs though, there doesn't seem to be a method for checking if the player is playing or paused - I'm guessing I can just make a variable and bind setting it's value to the play and pause events, but I feel like I'm missing something simple.