I had a problem when Chrome sometimes played our audio (mp3), and sometimes not. Worked fine in Safari, FireFox, etc.
What worked for me was to configure {solution: "flash, html"} in the config. Borrowing from .js that @Tyilo sent:
$("#jquery_jplayer_1").jPlayer({ ready: function () { $(this).jPlayer("setMedia", { mp3: "http://www.radiosmasher.com/test.mp3", ogg: "http://www.radiosmasher.com/test.ogg" }); }, swfPath: "/js", solution: "flash,html", supplied: "mp3, ogg", cssSelectorAncestor: "", cssSelector: { play: "#play", pause: "#pause", stop: "#stop", mute: "#mute", unmute: "#unmute", currentTime: "#currentTime", duration: "#duration" }, size: { width: "320px", height: "180px" }, errorAlerts: true });
source share