So basically i have a js file which looks like:

    var player = $("#zen .player");

    player.jPlayer({
            ready: function () {
            $(this).jPlayer("setMedia", {
                mp3: ""
            });
        },
        swfPath: "",
        supplied: "mp3"         
    });  

And i want to be able to set the mp3 value of the js from a php value (e.g. $h->post->vars['audio']. So something like mp3: $h->post->vars['audio']

The mp3 value must remain between the double-quotes for some reason in order to work.

I am using Zen Audio Player.

Thanks in advance!

link|improve this question

50% accept rate
Dup of Pass a PHP string to a Javascript variable (including escaping newlines), and many, many, MANY others. – outis Jan 21 at 17:40
feedback

1 Answer

up vote 2 down vote accepted

More generally, to put a PHP value in JavaScript:

var something = <?php echo json_encode($php_var); ?>;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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