Hey guys,
I have search the web and I haven't found any help on how to play MP3's via JPlayer. My mp3's are stored in the database as a file and not a URL. Have anyone use JPlayer to play music files from a database? Here's what I have so far:
(document).ready(function () {
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
title: "Bubble",
mp3: $("#<%=gvUserMusicList.ClientID%> input[id*='lblFileURL']:text").val()
});
},
cssSelectorAncestor: "#jp_container_1",
...
Go to the complete details ...