فارسی

جدید ترین مطالب
بخش بایگانی
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; }