i have a question about jplayer.
this is my code:
$(\"#jquery_jplayer_1\").jPlayer({
ready: function () {
$(this).jPlayer(\"setMedia\
$("#jquery_jplayer_1").bind($.jPlayer.event.progress, function (event){
// If media loading is complete
if (event.jPlayer.status.seekPercent === 100){
$(".jp-title .jp-title-loading").remove();
// Otherwise, if media is still loading
} else {
if($(".jp-title .jp-title-loading").length == 0){
$(".jp-title").prepend('Loading...');
}
}
});