Supprimer les truc inutils

This commit is contained in:
Michael RICOIS 2012-02-15 10:48:22 +00:00
parent 8677f04e5a
commit 31667cac6c

View File

@ -1,17 +0,0 @@
$(document).ready(function(){
$(".tooltip").click(function(){
var id = $(this).attr('id');
var date = $('#ch_'+id).html();
$('#ch_'+id).html('<img src="/themes/default/images/ajax.gif" />');
$.ajax({
type : "GET",
cache : false,
url : 'dashboard/ciblagedetail/id/'+id,
data : $(this).serializeArray(),
success: function(data) {
$('#ch_'+id).html(date);
$('.previsualisation').html(data);
}
});
});
});