|
$(function(){
|
|
|
|
$(".del_otzyv").click(function(){
|
|
var id = $(this).attr('href');
|
|
//alert(id);
|
|
|
|
$.ajax({
|
|
type:"POST",
|
|
url:'/act/j_load_otzyv',
|
|
data:"act=del&id=" + id,
|
|
success:function(data){/*alert(data)*/}
|
|
|
|
});
|
|
$("div#"+id).hide('5000');
|
|
return false;
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}); |