$(function() {
	$("#cart tr .remove input").click(function() {
		prod = $(this).val();
		
		$.ajax({
			url: "includes/del_produit.php",
			type: "GET",
			dataType: "json",
			
			data: "id_prod=" + prod,
			
			success: function(data) {
				
				//alert('cazzo1' + data.nbr);
				$("#tot_art").html(data.nbr);
				$("#tot_price").html(data.total);
			
				$("#cart tr .remove input[value=" + prod + "]").parent().parent().fadeOut(500, function() {
					
					$(this).remove();});
					
			},
			error: function() {
				
				alert('La supression n’a pas pu être executee');
			}
			
		});
	});
});


