I've tried to resolve this by looking at the user guide for jPlayer and via answers to a similar question on Stackoverflow, but unfortunately my ability with javascript is such that I can't implement the suggested answer.

I've successfully placed jplayer on my site, styled it and implemented a playlist no sweat. Here's the javascript (snippet - removed extraneous extra songs):

$(document).ready(function(){

        new jPlayerPlaylist({
            jPlayer: "#jquery_jplayer_1",
            cssSelectorAncestor: "#jp_container_1"
        }, [
            {
                title:"Opening (The Crows)",
                mp3:"../../audio/mp3/01-Opening_The Crows.mp3",
                oga:"../../audio/ogg/01-Opening_The Crows.ogg"
            }       
        ], {
            swfPath: "js",
            supplied: "oga, mp3",
            wmode: "window"
        });

    });

As well as the automatically-generated playlist, I also want the same audio files to be playable via separate text links elsewhere on the page. Here's the HTML (again, snipped just to refer to one song):

<a class="track" href="../../audio/mp3/01-Opening_The Crows.mp3">Opening (The Crows)</a>

I understand that I have to call the jplayer play function using a click on '.track' as the event, as in the example linked already, but I'm unable to include this code in the jplayer script I've already setup without breaking the player.

Any suggestions much appreciated (those which explain the reasoning behind the solution are preferred, so I can learn from the problem).

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

i think the neatest way would be to include URLs to both MP3 and OGG files in your markup, like:

<a class="track" 
   href="javascript:;" 
   data-mp3="../../audio/mp3/01-Opening_The Crows.mp3" 
   data-ogg="../../audio/ogg/01-Opening_The Crows.ogg">
   Opening (The Crows)</a>

then your javascript could pass both formats, for maximum browser compatibility:

$("a.track").live("click", function(e) {
    e.preventDefault();

    $("#jquery_jplayer_1").jPlayer("setMedia", 
        { 
            mp3: $(this).attr("data-mp3"), 
            oga: $(this).attr("data-ogg") 
        })
        .jPlayer("play");
});
link|improve this answer
I'm afraid not. When clicked, the link simply behaved as a usual mp3 link (Firefox - 'waiting for video). I tried adding the script both as a separate piece of code and within the original jplayer script on the page but no joy, I'm afraid. It's possible that I'm still including the script incorrectly, syntax-wise - any thoughts? – shngrdnr Feb 7 at 8:30
whoops! i forgot to call preventDefault to prevent the <a> tag's default behaviour occurring.. does this help? I edited my answer - have a play with the fiddle to see it in action.. – Lloyd Feb 7 at 10:50
Still no joy Lloyd. Using the code given, when the text links are clicked the jplayer only loses its song duration track - aside from this nothing else happens that I can see. Unfortunately the Fiddle page only gives a 502 bad gateway error in the result page for me. Thanks for the help so far - this is all definite sadface. – shngrdnr Feb 7 at 13:48
you get 502 errors on jsFiddle when their servers are overloaded - it has nothing to do with the code.. keep trying.. once you have seen the code working and had a play, it might become more evident why your own code isn't working. – Lloyd Feb 7 at 15:39
if possible, post or email me a link to your site.. what you need is a trivial, common requirement - we'll sort it. – Lloyd Feb 7 at 15:40
show 15 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.