Yes its possible as jPlayer itself has no interfaceInclude script<script type="text/javascript" src="../js/jquery.jplayer.min.js"></script>Include div for jPlayer<div id="jquery_audioPlayer" class="jp-jplayer"></div>
Initialize jPlayer$("#jquery_audioPlayer").jPlayer({swfPath: "../js",wmode: "window"});now when you want to play audio use the code$('#jquery_audioPlayer').jPlayer("setMedia", {mp3:"mp3 file path"});$('#jquery_audioPlayer').jPlayer("supplied", "mp3");$('#jquery_audioPlayer').jPlayer("play");
Ok,and how would this example look with the fix so that it also works on Chrome for Android (this is html5 without flash)Also on Opera Mobile for Android it displays three charactersAny idea?Thanks!