You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
361 B

$(document).ready(function(){
$('.delete_file').click(function(){
var url = '/admin/ajax_delete_file/';
$.get(
url, {'id': $(this).attr("value")}, function(j){
$('#file_list').html(j);
});//end get
return false;
});//end delete
});//end ready