JSFiddle - React, Tailwind, and code Playground
by D S
HTML
<script src="//connect.soundcloud.com/sdk.js"></script>
<button onclick="repeat()">Repeat</button>
<button onclick="playIt()">Play</button>
JavaScript
SC.initialize({
client_id: "7a17129ba9cd5fff34f847e3539829b7",
});
function playIt(){
var sound = SC.stream("/tracks/156365722", function(sound){
sound.play();
});
}
function repeat(){
var sound = SC.get("/tracks/156365722", function(sound){
console.log(sound.id);
});
}