$(document).ready(function() { $("#contactForm").validate({ // errorClass: "notification_error", // highlight: function (element, errorClass, validClass) { // return false; // ensure this function stops // }, // unhighlight: function (element, errorClass, validClass) { // return false; // ensure this function stops // }, // errorPlacement: function(error, element) { // if (element.attr("name") == "fname" || element.attr("name") == "lname" ) { // error.insertAfter(element); // } else { // error.insertAfter(".form-note"); // } // }, rules: { captcha: { required: true, remote: "/plugins/captcha/process.php" }, message: { required: true, minlength: 25 }, tel: { digits: true, minlength: 7 } }, submitHandler: function(form) { jQuery(form).ajaxSubmit({ target: "#result", url: "/plugins/eter-contact-us.php?lang=pl&dp=/", // override for forms action attribute beforeSubmit: function() { $("#contactForm p.input-submit").append(" Wysyłanie..."); }, success: function(data) { $("#contactForm").fadeOut(1000, function() { $("#contactForm").html("
"); $("#contactForm #message").html("

Wiadomość wysłana!

") .append("

Kopię wiadomości wysłano także do Twojej skrzynki. Jeśli zachodzi potrzeba, wkrótce odpowiemy.

").append(data) .hide() .fadeIn(2000, function() { $("#message p").before(""); $("#message img").hide().show(100); }); }).fadeIn(1000); } }); return false; } }); });