관리-도구
편집 파일: default2.js
$("#form3").submit(function(event) { event.preventDefault(); initValidation2(); }); function initValidation2() { $("#submit3").attr("value", "Please wait..."); $("#submit3").attr("disabled", "disabled"); var action = "http://impressads.com/adserver/lead/livit.py"; jQuery.getJSON(action, { name: $('#name3').val(), mobile_number: $('#mobile3').val(), email_address: $('#email3').val(), comments: $('#comments3').val(), //~ subject: $('#subject').val(), web_page: "Livit Homes", sms_title: "Livit Homes Enquiry", lead_source: "Livit Homes landing page", came_from: "quick-contact", }, function(data) { if (data.status.match('submitted') != null) { clear_form3(); dataLayer.push({ "event": "LivitHomesEnquirySubmission" }); $('#response3').html(data.status); $("#submit3").attr("value", "Successfully Send"); $('#submit3').removeAttr('disabled'); } }); return false; } function clear_form3() { $("#name3").val(''); $("#mobile3").val(''); $("#email3").val(''); $("#comments3").val(''); }