Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mataspetrikas/429798 to your computer and use it in GitHub Desktop.
Save mataspetrikas/429798 to your computer and use it in GitHub Desktop.
jump to a certain track in the SoundCloud custom player
<script type="text/javascript">
$('a.sc-external-link').live('click', function(event) {
// simulate the click on the tracklist item
$('ol.sc-trackslist a[href=' + this.href +']').click();
});
</script>
<!-- HTML -->
<div class="sc-player">
<a href="http://soundcloud.com/matas/hobnotropic">My dub track</a>
<a href="http://soundcloud.com/forss/forss-vs-borg-deadline-live-in-milan-2004">Forss</a>
<a href="http://soundcloud.com/matas/matas-petrikas-live-at-gravity-club-30-05-2008">My live set</a>
<a href="http://soundcloud.com/matas/goldfrapp-little-bird-matas-ornitologic-remix">Pumpkins Track</a>
<a href="http://soundcloud.com/matas/on-the-bridge">On the Bridge</a>
</div>
<a href="http://soundcloud.com/matas/on-the-bridge" class="sc-external-link">Play the track directly</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment