END SUCCESS RESULT: END Elapsed time (microseconds): 59.605600 RESOLVE NODATE CONDITION: END SUCCESS RESULT: END Elapsed time (microseconds): 112.105897 RESOLVE NODATE CONDITION: END SUCCESS RESULT: END Elapsed time (microseconds): 72.632076 RESOLVE NODATE CONDITION: END SUCCESS RESULT: END Elapsed time (microseconds): 82.500792 RESOLVE NODATE CONDITION: END SUCCESS RESULT: END Elapsed time (microseconds): 84.474496 RESOLVE NODATE CONDITION: END SUCCESS RESULT: END Elapsed time (microseconds): 83.290076 RESOLVE NODATE CONDITION: END SUCCESS RESULT: END Elapsed time (microseconds): 110.132376 RESOLVE NODATE CONDITION: END SUCCESS RESULT: END Elapsed time (microseconds): 99.869144 RESOLVE NODATE CONDITION: END SUCCESS RESULT: END Elapsed time (microseconds): 101.842842 RESOLVE NODATE CONDITION: END SUCCESS RESULT: function AjaxShowForm(a, v) { var data = $("#" + v).serialize(); $.ajax({ type: "POST", url: "", data: data, beforeSend: function (html) { // this happens before actual call $("#" + a).html("درحال ارسال.."); $("#" + a).show(); }, success: function (html) { // this happens after we get results $("#" + a).html(""); $("#" + a).show(); if (html == "Ok") { $("#" + a).append("ارسال شد"); } else { $("#" + a).append(html); } } }); return false; }