In mootools I would do something like $(\'form_id\').send({success:function(res){....}}); What is the parallel syntax in jQuery?
$(\'form_id\').send({success:function(res){....}});
Another words: How
This should do it:
$.ajax({ type: 'POST', url: url, data: $('#bob').serialize(), success: success, dataType: dataType });