1er commit
1er version
This commit is contained in:
34
scripts/contact-form.js
Normal file
34
scripts/contact-form.js
Normal file
@@ -0,0 +1,34 @@
|
||||
$(document).ready(function() {
|
||||
$('form#contactForm').submit(function() {
|
||||
$('form#contactForm .error').remove();
|
||||
var hasError = false;
|
||||
$('.requiredField').each(function() {
|
||||
if(jQuery.trim($(this).val()) == '') {
|
||||
var labelText = $(this).prev('label').text();
|
||||
$(this).parent().append('<span class="error">You forgot to enter your '+labelText+'.</span>');
|
||||
hasError = true;
|
||||
} else if($(this).hasClass('email')) {
|
||||
var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;
|
||||
if(!emailReg.test(jQuery.trim($(this).val()))) {
|
||||
var labelText = $(this).prev('label').text();
|
||||
$(this).parent().append('<span class="error">You entered an invalid '+labelText+'.</span>');
|
||||
hasError = true;
|
||||
}
|
||||
}
|
||||
});
|
||||
if(!hasError) {
|
||||
$('form#contactForm li.buttons button').fadeOut('normal', function() {
|
||||
$(this).parent().append('<img src="/wp-content/themes/td-v3/images/template/loading.gif" alt="Loading…" height="31" width="31" />');
|
||||
});
|
||||
var formInput = $(this).serialize();
|
||||
$.post($(this).attr('action'),formInput, function(data){
|
||||
$('form#contactForm').slideUp("fast", function() {
|
||||
$(this).before('<p class="thanks"><strong>Thanks!</strong> Your email was successfully sent. I check my email all the time, so I should be in touch soon.</p>');
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user