0

Im currently using soundclouds jquery player to add music to my site but I'd like to know how I can move the album covers from their current assigned position which is within the '$player' and move them into a div id called "#inner"?

currently the jquery looks like this

    $artworks = $('<ol class="sc-artwork-list"></ol>').appendTo($player),
    $list = $('<ol class="sc-trackslist"></ol>').appendTo($player);

full player script can be found here http://jsfiddle.net/Y7D2E/

4

1 回答 1

0

专辑封面在 var $artworks 中。如果你想将它们移动到 div id=#inner,只需将行更改为$artworks = $('<ol class="sc-artwork-list"></ol>').appendTo('#inner')

于 2012-04-04T20:34:23.650 回答