Search code examples
javascriptphphtmlflashjplayer

Why jPlayer video are not playing?


        $("#jPlayer").jPlayer({
            ready: function () {
                $(this).jPlayer("setMedia", {
                    flv: 'http://st1.blive.kg/storage/flv7/2/249162.70951.flv'
                });
            },
            swfPath: "/js/Jplayer.swf",
            supplied: "flv"
        }).jPlayer("play");

Whats wrong with my code?_______________


Solution

  • I think this is what you want:

    $("#jPlayer").jPlayer({
        ready: function () {
            $(this).jPlayer("setMedia", {
                flv: 'http://st1.blive.kg/storage/flv7/2/249162.70951.flv'
            });
    
            $(this).jPlayer("play");
        },
        swfPath: "/js/Jplayer.swf",
        supplied: "flv"
    });