Created
October 8, 2019 04:40
-
-
Save raftheunis87/eedf01766ba83f1b764a2b164fc756f9 to your computer and use it in GitHub Desktop.
contact.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(() => { | |
$('#contactForm input,#contactForm textarea').jqBootstrapValidation({ | |
preventSubmit: true, | |
submitError() { | |
// additional error messages or events | |
}, | |
submitSuccess($form, event) { | |
event.preventDefault(); // prevent default submit behaviour | |
// get values from FORM | |
const name = $('input#name').val(); | |
const email = $('input#email').val(); | |
const message = $('textarea#message').val(); | |
const response = $('#g-recaptcha-response').val(); | |
let 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(' '); | |
} | |
$.ajax({ | |
url: './mail/contact_me.php', | |
type: 'POST', | |
data: { | |
name, | |
email, | |
message, | |
response | |
}, | |
cache: false, | |
success() { | |
// 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 successfully. I will contact you as soon as possible.</strong>'); | |
$('#success > .alert-success') | |
.append('</div>'); | |
//clear all fields | |
$('#contactForm').trigger('reset'); | |
}, | |
error() { | |
// 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>Sorry ${firstName}, something went wrong while trying to send your message. Please try again later!`); | |
$('#success > .alert-danger').append('</div>'); | |
//clear all fields | |
$('#contactForm').trigger('reset'); | |
}, | |
}); | |
}, | |
filter() { | |
return $(this).is(':visible'); | |
}, | |
}); | |
$('a[data-toggle="tab"]').click(function (e) { | |
e.preventDefault(); | |
$(this).tab('show'); | |
}); | |
}); | |
/*When clicking on Full hide fail/success boxes */ | |
$('#name').focus(() => { | |
$('#success').html(''); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment