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.
|
$(document).ready(function(){
|
|
$('.delete_file').click(function(){
|
|
var url = '/ajax_delete_file/';
|
|
$.get(
|
|
url, {'id': $(this).attr("value")}, function(j){
|
|
$('#file_list').html(j);
|
|
});//end get
|
|
return false;
|
|
});//end delete
|
|
});//end ready
|
|
|
|
|