It looks like you're new here. If you want to get involved, click one of these buttons!
<ul>
<li class="end"><a href="http://localhost:8180/pikacom/fuel/authors/create" class="ico ico_create" id="create_item">Create</a></li>
<li class="spacer end"><a href="#" class="ico ico_delete" id="multi_delete" style="display: none; ">Delete Multiple</a></li>
<li class="spacer end"><a href="#" class="ico ico_precedence" id="rearrange" style="display: none; ">Rearrange</a></li>
</ul>
<li class="spacer end">
Comments
$('.multi_delete').live('click', function(e){ if ($('.multi_delete:checked').size()){ $('#multi_delete').parent().css({display: 'block'}); } else { $('#multi_delete').parent().hide(); } }); $('#multi_delete').parent().hide();
For the rearrange you'll need to add the parent() on line 963.