I changed my coding style for php and jQuery, but my Registration
$(\"#reg_form_company\").bind(\"submit\", function() {
$.fancybox.showActivity();
$.aj
you must refere your form instead of $(this)
give your form an id or class ex :
and in JQuery :
$.ajax({
type : "POST",
cache : false,
url : $('#MyForm').attr('action'),
data : $('#MyForm').serializeArray(),
success : function(data) {
$(".printArea").empty().append(data).css('visibility','visible');
}
});