This should work:

$(document).ready(function(){
   $('#actionform').validate({
        submitHandler: function(form) {
               $(form).ajaxSubmit({
                   success: function() {
                       $('#actionform').hide();
                      $('#content').append("<p class='thanks'>Thanks! Your
request has been sent.</p>"
                }
              });
        },
        errorPlacement: function(error, element) {
            error.insertAfter(".rowElem");
        }
       });
});

On Sun, Dec 13, 2009 at 18:09, Gian-ava <b...@stylozero.com> wrote:

>
> Oh c'mon, nobody who can helo me out with this?
>
> Nobody who can figure out how to code the right errorPlacement to place the
> error label where I need it?
> --
> View this message in context:
> http://old.nabble.com/Validation-Plugin%3Aneed-help-with-errorPlacement-tp26719238s27240p26769256.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.
>
>

Reply via email to