This player supports such media formats as: mp3, mp4 (AAC/H.264), ogg (Vorbis/Theora), webm (Vorbis/VP8), wav, mp3, mp4 (AAC/H.264), flv
Two files are required for the player's correct work: jquery.jplayer.min.js and Jplayer.swf
HTML entry, with an example id for jPlayer:
- <div id="jpId"></div>
<div id="jpId"></div>
Code Example:
- $(document).ready(function() {
- $("#jpId").jPlayer( {
- ready: function () {
- $(this).jPlayer("setMedia", {
- mp3: "/mp3/elvis.mp3"
- });
- }
- });
- });
$(document).ready(function() {
$("#jpId").jPlayer( {
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "/mp3/elvis.mp3" // Defines the mp3 url
});
}
});
});
You can see more information on working with JPlayer on the official website at JPlayer