Start learning Ajax (and jQuery), I encounter the issue with post form data, which I could not resolve myself.
First, here is the simple example where I collect data, po
I believe you're looking for the success in the .ajax options parameter.
success
.ajax
$.ajax({ ... success: function(d){ alert(d); } });