JavaScript
1
Вклад в тег
вот так если json возвращает я принемаю $(document).on("click",".delete_ads", function(){
var id = $(this).attr("iid");
var uid = $('#balance').attr('user');
$.ajax({
type: "POST",
data: {"uid": uid, "id": id},
url: "./lib/delete_ads.php",
cache: false,
success: function(data){
datas = JSON.parse(data);
$.each(datas, function(index, data){
});
if (datas.true == "true"){
$('[sss="'+id+'"]').remove();
}
if(datas.true == "false"){
$("#mesegee").text(datas.echo).show().delay(1500).fadeOut(800);
}
}
});
return false;
});
$(document).on("click",".dellet_img", function(){
var user = $('#balance').attr('user');
var ad_id = $(this).attr("linkid");
var type_job = window.location.hash.substr(1);
$.ajax({
type: "POST",
url: "./lib/dell.php",
data: {"user":user, "ad_id":ad_id,"type_job":type_job},
cache: false,
success: function(response){
if(response == "true"){
$('[iids="'+ad_id+'"]').remove().hide(3000);
}
}
});
return false;
});