javascript - Why won't Jplayer CirclePlayer play mp3, the other Jplayer skins all do? -


i new coding (playing html5 ccs3 , javascript 2 mths now) , i'm trying jplayer circleplayer play mp3 format using demo file "demo-05.htm".

here's snipit of code in i've altered per information i've found here in other posts, still can't make circleplayer work in either ie10 or current release google chrome, though other jplayer skins play mp3's.

i've added error alerts received none on last try.

if can me figure out appreciate it, i'm new coding stuff , keep coming against strange anomalies.

if can work, need figure out how use circleplayer play multiple mp3 files on same page!

here's code i've been working far. media files @ same folder level htm file, js js , skin folders @ same level htm file i'm working out of demo folder while testing player.

<script type="text/javascript"> //<![cdata[  $(document).ready(function(){  var mycircleplayer = new circleplayer("#jquery_jplayer_1", { mp3: "001.mp3" m4a: "miaow-07-bubble.m4a", oga: "miaow-07-bubble.ogg" }, { supplied: "mp3", "m4a", "oga", cssselectorancestor: "#cp_container_1", swfpath: "js", wmode: "window", keyenabled: true erroralerts: true, warningalerts: true }); }); //]]> </script> 

thanks bunch whatever assistance can offer newbie!

iamjoedy

i made jplayer circleplayer play mp3's following advice of su found in answer following question, , taking out additional lines of code had added in attempt make player work.

jplayer-circle-player-not-playing-mp3-file //

$(document).ready(function()         {     var mycircleplayer = new circleplayer("#jquery_jplayer_1",     {         mp3: "001.mp3"     }, {             supplied: "mp3",             cssselectorancestor: "#cp_container_1",             swfpath: "js",             wmode: "window"     }); }); //]]> </script> 

    removed m4a: , oga: lines     removed keyenabled: line     removed erroralerts: line     removed warningalerts: line 

and circleplayer played audios in both ie 10 , chrome.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -