File "play02.html"

Full Path: /home/analogde/www/Massage_debug_15_11_2017/play02.html
File size: 755 bytes
MIME-type: text/html
Charset: utf-8

<!DOCTYPE>

<html>

<head>

    <title>HTML 5 audio</title>

    <script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script>

    <script type="text/javascript" src="jquery.jplayer.js"></script>

    <script type="text/javascript">

        $("document").ready(function () {

            $("#jpId").jPlayer(

                {

                    ready: function () {

                        $(this).jPlayer("setMedia", {

                            mp3: "musique.mp3" // Url of the mp3 file

                        }).jPlayer("play");

                    },

                    supplied: "mp3"

                }

            );

        });

    </script>

</head>

<body>

    <div id="jpId"></div>

</body>

</html>