html5 - Soundjs is not playing sound in iPad1 and Window Lumia Phone -
i new html5 developer, using soundjs library play audio in html5 web application. soundjs not able play sound in ipad1, window phone , of android mobile. seem not initialized audio plugin, that's hwy not able load file , dispatch complete event. using code (soundjs library import in script tag) : if (!createjs.sound.initializedefaultplugins()) { alert("return") return; } var audiopath = "assets/audio/"; var manifest = [ {id:"music", src:audiopath+"watersplash.mp3|"+audiopath+"watersplash.ogg"}, {id:"thunder", src:audiopath + "ohh.mp3|"+audiopath + "ohh.ogg"} ]; this.displaymessage.innerhtml = "loading audio"; //var loadproxy = createj...