1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| $(function(){
var id = "",
community = "";
//Load Community list
$.getJSON('post.php', "refresh=1", function(data, textStatus, jqXHR) {
// debug
//console.log(data, textStatus, jqXHR);
// succès de la transaction, traité le contenu de data
$.each(data, function(index, value){
$('#communauty_list_id').children("tbody").append("<tr><td><a id='disable' href='post.php?disable="+data[index].id_community+"'>disable</a></td></tr>");
if(data[index].community_actif == 0){
$("#disable").html("enable");
}
});
}).error(function(jqXHR, textStatus, errorThrown){
// debug
//console.log(jqXHR, textStatus, errorThrown);
// échec de la transaction, gèrer la catastrophe
}).complete(function(jqXHR, textStatus){
// debug
//console.log(jqXHR, textStatus);
// la transaction s'est terminée par un succès ou par un échec
$('#communauty_list_id a').click(function(){
id = $(this).parent().attr('id'); //On recupere l'id de la communauté
community = $(this).find('td').val();
myPopUp("#"+id,"#popupContact","#popupContactClose");
});
});
}); |
Partager