i want use beforesend option but its only avaliable in .ajax method
this is post i want edit
function ajaxDelete(id, tablica, tablica_col, trID){
var current = $(trID).closest('tr');//.attr('id');
if(confirm("Potvrdite brisanje")){
$.post("ajax/ajaxDelete.php", {id: id, tablica: tablica, tablica_col: tablica_col }, function(data){
});
beforeSend: current.animate({'backgroundColor':'#fb6c6c'},300);
}
};
and calling
<td><a class="deleteReccord" style="cursor:pointer;" onclick="ajaxDelete('.$stroj['stroj_ID'].', \'stroj\', \'stroj_ID\',this);">Obriši</a></td>












