$(function(){
$(function(){
'use strict';
$('.form').on('submit', function(e){
e.preventDefault();
if ($(this).valid()) {
var msg = new FormData(this);
$.ajax({
url: 'scripts/mail.php',
type: 'POST',
contentType: false,
processData: false,
data: msg,
success: function() {
$('form').trigger('reset');
$('#modalSuccess').modal('show');
},
error: function() {
$('form').trigger('reset');
$('#modalError').modal('show');
}
});
};
});
});