.post
jQuery の AJAX メソッドを使用しています。
// completion toggling
$('.item input').click(function() {
$.post('complete.php', {item: this.id}, function() {
$(this).parent().fadeOut('slow');
});
});
ここで何が間違っていますか?レコードが更新されると AJAX は機能しますが、コールバック イベントは発生しません。Firebug にもエラーはありません。