15 lines
579 B
Plaintext
15 lines
579 B
Plaintext
$('.bulletin_links_block a.remove_existing_record').live('click', function(){
|
|
//$(this).parents('.list_item').remove();
|
|
$(this).parents('tr.list_item').remove();
|
|
});
|
|
|
|
$('.bulletin_files_block a.remove_existing_record').live('click', function(){
|
|
//$(this).parents('.list_item').remove();
|
|
$(this).parents('tr.list_item').remove();
|
|
});
|
|
|
|
$('.action a.remove_existing_record').live('click', function(){
|
|
$(this).next('.should_destroy').attr('value', 1);
|
|
//$("#bulletin_" + $(this).prev().attr('value')).hide();
|
|
$("tr#bulletin_" + $(this).prev().attr('value')).hide();
|
|
}); |