build contact form fix
This commit is contained in:
parent
9d1f6d6494
commit
afa129d583
153
dist/assets/mail/contact_me.js
vendored
153
dist/assets/mail/contact_me.js
vendored
@ -1,75 +1,88 @@
|
|||||||
$(function() {
|
$(function () {
|
||||||
|
$(
|
||||||
|
"#contactForm input,#contactForm textarea,#contactForm button"
|
||||||
|
).jqBootstrapValidation({
|
||||||
|
preventSubmit: true,
|
||||||
|
submitError: function ($form, event, errors) {
|
||||||
|
// additional error messages or events
|
||||||
|
},
|
||||||
|
submitSuccess: function ($form, event) {
|
||||||
|
event.preventDefault(); // prevent default submit behaviour
|
||||||
|
// get values from FORM
|
||||||
|
var name = $("input#name").val();
|
||||||
|
var email = $("input#email").val();
|
||||||
|
var phone = $("input#phone").val();
|
||||||
|
var message = $("textarea#message").val();
|
||||||
|
var firstName = name; // For Success/Failure Message
|
||||||
|
// Check for white space in name for Success/Fail message
|
||||||
|
if (firstName.indexOf(" ") >= 0) {
|
||||||
|
firstName = name.split(" ").slice(0, -1).join(" ");
|
||||||
|
}
|
||||||
|
$this = $("#sendMessageButton");
|
||||||
|
$this.prop("disabled", true); // Disable submit button until AJAX call is complete to prevent duplicate messages
|
||||||
|
$.ajax({
|
||||||
|
url: "/assets/mail/contact_me.php",
|
||||||
|
type: "POST",
|
||||||
|
data: {
|
||||||
|
name: name,
|
||||||
|
phone: phone,
|
||||||
|
email: email,
|
||||||
|
message: message,
|
||||||
|
},
|
||||||
|
cache: false,
|
||||||
|
success: function () {
|
||||||
|
// Success message
|
||||||
|
$("#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>");
|
||||||
|
//clear all fields
|
||||||
|
$("#contactForm").trigger("reset");
|
||||||
|
},
|
||||||
|
error: function () {
|
||||||
|
// Fail message
|
||||||
|
$("#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 " +
|
||||||
|
firstName +
|
||||||
|
", it seems that my mail server is not responding. Please try again later!"
|
||||||
|
)
|
||||||
|
);
|
||||||
|
$("#success > .alert-danger").append("</div>");
|
||||||
|
//clear all fields
|
||||||
|
$("#contactForm").trigger("reset");
|
||||||
|
},
|
||||||
|
complete: function () {
|
||||||
|
setTimeout(function () {
|
||||||
|
$this.prop("disabled", false); // Re-enable submit button when AJAX call is complete
|
||||||
|
}, 1000);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
filter: function () {
|
||||||
|
return $(this).is(":visible");
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
$("#contactForm input,#contactForm textarea").jqBootstrapValidation({
|
$('a[data-toggle="tab"]').click(function (e) {
|
||||||
preventSubmit: true,
|
e.preventDefault();
|
||||||
submitError: function($form, event, errors) {
|
$(this).tab("show");
|
||||||
// additional error messages or events
|
});
|
||||||
},
|
|
||||||
submitSuccess: function($form, event) {
|
|
||||||
event.preventDefault(); // prevent default submit behaviour
|
|
||||||
// get values from FORM
|
|
||||||
var name = $("input#name").val();
|
|
||||||
var email = $("input#email").val();
|
|
||||||
var phone = $("input#phone").val();
|
|
||||||
var message = $("textarea#message").val();
|
|
||||||
var firstName = name; // For Success/Failure Message
|
|
||||||
// Check for white space in name for Success/Fail message
|
|
||||||
if (firstName.indexOf(' ') >= 0) {
|
|
||||||
firstName = name.split(' ').slice(0, -1).join(' ');
|
|
||||||
}
|
|
||||||
$this = $("#sendMessageButton");
|
|
||||||
$this.prop("disabled", true); // Disable submit button until AJAX call is complete to prevent duplicate messages
|
|
||||||
$.ajax({
|
|
||||||
url: "contact_me.php",
|
|
||||||
type: "POST",
|
|
||||||
data: {
|
|
||||||
name: name,
|
|
||||||
phone: phone,
|
|
||||||
email: email,
|
|
||||||
message: message
|
|
||||||
},
|
|
||||||
cache: false,
|
|
||||||
success: function() {
|
|
||||||
// Success message
|
|
||||||
$('#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>');
|
|
||||||
//clear all fields
|
|
||||||
$('#contactForm').trigger("reset");
|
|
||||||
},
|
|
||||||
error: function() {
|
|
||||||
// Fail message
|
|
||||||
$('#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 " + firstName + ", it seems that my mail server is not responding. Please try again later!"));
|
|
||||||
$('#success > .alert-danger').append('</div>');
|
|
||||||
//clear all fields
|
|
||||||
$('#contactForm').trigger("reset");
|
|
||||||
},
|
|
||||||
complete: function() {
|
|
||||||
setTimeout(function() {
|
|
||||||
$this.prop("disabled", false); // Re-enable submit button when AJAX call is complete
|
|
||||||
}, 1000);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
filter: function() {
|
|
||||||
return $(this).is(":visible");
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
$("a[data-toggle=\"tab\"]").click(function(e) {
|
|
||||||
e.preventDefault();
|
|
||||||
$(this).tab("show");
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/*When clicking on Full hide fail/success boxes */
|
/*When clicking on Full hide fail/success boxes */
|
||||||
$('#name').focus(function() {
|
$("#name").focus(function () {
|
||||||
$('#success').html('');
|
$("#success").html("");
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user