$(function(){ $("#refreshimg").click(function(){ $.post('kontakt/captcha/ns.html'); $("#refreshimg").load('kontakt/captcha/imgreq.html'); return false; }); $("#captchaform").validate({ rules: { captcha: { required: true, remote: "kontakt/captcha/procc.html" }, 'email[email]': { required: true, email:true }, 'email[name]': { required: true, minlength: 3 }, 'email[body]': { required: true, minlength: 10 } }, messages: { captcha: "Wpisz poprawny kod z obrazka.", 'email[email]': "Wpisz poprawny adres e-mail.", 'email[name]': "Wpisz swoje imię.", 'email[body]': "Wpisz treść wiadomości." }, onkeyup: false }); });