Server IP : 111.118.215.189 / Your IP : 3.17.181.199 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home1/a1673wkz/propstonerealty.com/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
(function ($) { "use strict"; var $document = $(document), $window = $(window), forms = { contactForm: $('#contactform'), appointmentForm: $('#appointment-form') }; $document.ready(function () { // appointment form if (forms.appointmentForm.length) { var $appointmentForm = forms.appointmentForm; $appointmentForm.validate({ rules: { name: { required: true, minlength: 2 }, message: { required: true, minlength: 20 }, email: { required: true, email: true } }, messages: { name: { required: "Please enter your name", minlength: "Your name must consist of at least 2 characters" }, message: { required: "Please enter message", minlength: "Your message must consist of at least 20 characters" }, email: { required: "Please enter your email" } }, submitHandler: function (form) { $(form).ajaxSubmit({ type: "POST", data: $(form).serialize(), url: "form/process-appointment.php", success: function () { $('#successAppointment').fadeIn(); $('#appointment-form').each(function () { this.reset(); }); }, error: function () { $('#appointment-form').fadeTo("slow", 0, function () { $('#errorAppointment').fadeIn(); }); } }); } }); } // contact page form if (forms.contactForm.length) { var $contactform = forms.contactForm; $contactform.validate({ rules: { firstname: { required: true, minlength: 2 }, phonenumber: { required: true, minlength: 10 }, message: { required: true, minlength: 20 }, email: { required: true, email: true } }, messages: { firstname: { required: "Please enter your first name", minlength: "Your name must consist of at least 2 characters" }, phonenumber: { required: "Please enter your Phone number", minlength: "Your phone number must consist of at least 10 characters" }, message: { required: "Please enter message", minlength: "Your message must consist of at least 20 characters" }, email: { required: "Please enter your email" } }, submitHandler: function (form) { $(form).ajaxSubmit({ type: "POST", data: $(form).serialize(), url: "form/quote-contact.php", success: function () { $('#success').fadeIn(); $('#contactform').each(function () { this.reset(); }); }, error: function () { $('#contactform').fadeTo("slow", 0, function () { $('#error').fadeIn(); }); } }); } }); } }); })(jQuery);