Solution : Use JQuery
function hapus(id){
if (confirm('Yakin mau dihapus ???')) {
$.post('actions/hapus_pengeluaran.php', {id: +id, ajax: 'true' },
function(){
$("#row_"+id).fadeOut("slow");
});
}
}
Source : http://www.bitsntuts.com/css/simple-jquery-delete-table