简体   繁体   中英

Soundcloud API works on Firefox but not on Safari or Chrome

http://jsfiddle.net/gwz3rchj/76/

I am using this piece of code. No errors in the console. It's not loading the sound at all.

$(document).ready(function() {  

    SC.initialize({
    client_id: "43e02302fc33adb2051f2391815f1828"

  });

 $("#stream").on("click", function(){
    SC.stream("/tracks/293", {autoPlay: true});
  });


});

Its jsfiddle issue , I think becuase it is using IFrame

here is working sample on plunker

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM