You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
894 B
30 lines
894 B
2 years ago
|
// Contact
|
||
|
$('#contact-form').submit(function() {
|
||
|
var action = $(this).attr('action');
|
||
|
|
||
|
$("#message").slideUp(750, function() {
|
||
|
$('#message').hide();
|
||
|
|
||
|
$('#submit')
|
||
|
.before('')
|
||
|
.attr('disabled', 'disabled');
|
||
|
|
||
|
$.post(action, {
|
||
|
name: $('#name').val(),
|
||
|
email: $('#email').val(),
|
||
|
comments: $('#comments').val(),
|
||
|
},
|
||
|
function(data) {
|
||
|
document.getElementById('message').innerHTML = data;
|
||
|
$('#message').slideDown('slow');
|
||
|
$('#cform img.contact-loader').fadeOut('slow', function() {
|
||
|
$(this).remove()
|
||
|
});
|
||
|
$('#submit').removeAttr('disabled');
|
||
|
if (data.match('success') != null) $('#cform').slideUp('slow');
|
||
|
}
|
||
|
);
|
||
|
|
||
|
});
|
||
|
return false;
|
||
|
});
|