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)