$(document).ready(function() { $('#contactForm').validate({ focusInvalid: false, rules: { name: { required: true, minlength: 2 }, email: { required: true, email: true }, message: { required: true, minlength: 10 } }, messages: { name: { required: 'Wpisz swoje imię i nazwisko!', minlength: jQuery.format('Pole imię wymaga podania przynajmniej {0} znaków!') }, email: { required: 'Wpisz swój e-mail!', email: 'Podaj prawidłowy adres e-mail!' }, message: { required: 'Wpisz wiadomość!', minlength: jQuery.format('Wiadomość wymaga podania przynajmniej {0} znaków!') } }, submitHandler: function(form) { $('#contactForm .btn-submit').html('Wysyłanie wiadomości ...'); $(form).ajaxSubmit({ success: function(responseText, statusText, xhr, $form) { $(form).delay(1300).slideUp('fast'); $('#response').html(responseText).hide().delay(1300).slideDown('fast'); } }); return false; } }); });