I am using the .postAJAX method for jQuery:
$('.item input').click(function() {
$.post('complete.php', {item: this.id}, function() {
$(this).parent().fadeOut('slow');
});
});
What am I doing wrong here? AJAX works when a record is updated, but the callback event never occurs. There are no errors in Firebug either.
source
share