Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sound Cloud has some instructions to control the players with jQuery: http://developers.soundcloud.com/docs/widget#quick-start

I am unable to make anything working. For instance, Is there any way to detect if the mini player is playing? I'm trying something like this with jQuery:

$(function(){
    if (api_play()){
        $("#myPlayer").width("360px");
    }else{
        $("#myPlayer").width("20px");   
    }
})

Example here: http://jsbin.com/afarod/2/edit (I put the link to the jQuery library and the SoundCloud api in the head. I'm not sure if I did it wright)

(Please explain it in a simple way. I know html, css, JavaScrip, JQuery ... but I am not a super expert. The instructions in the developer section are really complicated and confusing for me)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.