PlayList.render=function(){ $('#playlist').show(); PlayList.parent.empty(); for(var i=0;i'); li.append(item.name); li.attr('class', 'jp-playlist-' + i); var img=$(''); img.click(function(event){ event.stopPropagation(); PlayList.remove($(this).parent().data('index')); }); li.click(function(event){ PlayList.play($(this).data('index')); }); li.append(img) li.data('index',i); li.addClass('song'); PlayList.parent.append(li); } $(".jp-playlist-" + PlayList.current).addClass("collection_playing"); } PlayList.getSelected=function(){ return $('tbody td.name input:checkbox:checked').parent().parent(); } PlayList.hide=function(){ $('#playlist').hide(); } $(document).ready(function(){ PlayList.parent=$('#leftcontent'); PlayList.init(); $('#selectAll').click(function(){ if($(this).attr('checked')){ // Check all $('#leftcontent li.song input:checkbox').attr('checked', true); $('#leftcontent li.song input:checkbox').parent().addClass('selected'); }else{ // Uncheck all $('#leftcontent li.song input:checkbox').attr('checked', false); $('#leftcontent li.song input:checkbox').parent().removeClass('selected'); } }); });