خدمات الأمراض الجلدية
حب الشباب
يتكون ديرمابن من مجموعة الابر الدقيقة التي...
تجميل الأنف
عملية تجميل الأنف يشار إليها أحيانًا باسم...
تجاعيد الوجة والجسم
تجاعيد الوجه و الجسم للتخلص من التجاعيد يتم...
شد الجفون
شد الجفن المتهدل بدون جراحة و بدون آلم يمكنك...
الفيلر Filler
الفيلر Filler لعلاج التجاعيد وملئ الوجه. مع...
ماسك الإميلان
ماسك الإميلان Amelan Peeling ايه هو...
فيفاتشي Vivace
الفيفاتشي بيعتمد علي تراكب تقنيات حديثه مع...
بلازماج Plasmage
شد الجفون بدون جراحه Plasmage تهدل الجفون من...
مقالات مميزه
علاج تساقط الشعر
تساقط الشعر وحلول للتخلص منها تساقط الشعر من اكتر المشاكل التى تواجهها السيدات وبتسبب الاحراج والتوتر...
المسام الواسعه
المسام الواسعة وكيفية التخلص منها المسام الواسعة واحدة من المشاكل الي بتواجه اغلب النساء بتقلل كتير من...
الهالات السوداء
أفضل 3 حلول لعلاج الهالات السوداء #الهالات_السوداء واحدة من أوضح العلامات في الوجه، و اللي بتقلل من نضارة...
احجز موعد الآن!
$("#appointment").on( "submit", function( event ) { event.preventDefault(); var data = $( this ).serialize();
var http = new XMLHttpRequest();
var club_id = window.localStorage.getItem("club_id") || ""; http.open("POST", "https://api.eliteclinic.net/website-customer-service/client/store?aff_id=" + club_id , true);
//Send the proper header information along with the request http.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
http.onreadystatechange = function() {//Call a function when the state changes. if(http.readyState == 4 && http.status == 200) { data = $.parseJSON(http.responseText); // console.log(data.msg); document.getElementById("appointment").innerHTML = data.msg; document.getElementById("errors1").innerHTML = "";
}else{ data = $.parseJSON(http.responseText); // console.log(data.errors); if(data.errors === "undefined"){}else{ document.getElementById("errors1").innerHTML = data.errors; }
} } http.send(data); });
function Appointment(){ $( "appointment" ).on( "submit", function( event ) { event.preventDefault(); var data = $( this ).serialize();
var http = new XMLHttpRequest(); http.open("POST", "http://127.0.0.1:8000/callinfo", true);
//Send the proper header information along with the request http.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
http.onreadystatechange = function() { //Call a function when the state changes. if(http.readyState == 4 && http.status == 200) { console.log(http.responseText); } } http.send(data); });
}