hi people - i noticed youre familiar with this plugin :)

hi people

ive just started playing around with jquery.

ive used jqtransform to make my form pretty looking, and have
attempted to implement bassistance.de's validation plugin - everything
kind of works, apart from the fact that the validation message does
not appear visibly - if you really look, you can see the message "2
characters" underneath the text boxes.. ive set the z index to be
higher than the form too, and tried to position the error label - this
is the only css rule i have in relation to the form:

#commentForm label.error { display:inline; margin: 0 500px 0 0; z-
index:1111100000;}

the rest of the document and code can be seen at

ameliealden.com/victory/gallery.html

some advice on how to position the error label below each text field,
plus some help on why no others are appearing, would be really really
helpful as im not sure what to touch or tweak!

thanks

emma


On Sep 22, 10:10 pm, "kevin.mccormick" <kevin.mccorm...@cox.net>
wrote:
> thanks!
>
> On Sep 22, 1:09 pm, Michael Geary <m...@mg.to> wrote:
>
> > You can simplify this part:
>
> >     if ($('#chkStatus5').is(':checked')){
> >         return true;
> >     } else {
> >         return false;
> >     }
>
> > to:
>
> >     return $('#chkStatus5').is(':checked');
>
> > As you can see, that's almost the same as your previous attempt; the only
> > thing missing was the "return".
>
> > -Mike
>
> > On Tue, Sep 22, 2009 at 12:58 PM, kevin.mccormick
> > <kevin.mccorm...@cox.net>wrote:
>
> > > Wow I finally got it... updated code here:
>
> > > referrerother: {
> > >                                        required: function(element){
> > >                                                 if
> > > ($('#chkStatus5').is(':checked')){
> > >                                                        return true;
> > >                                                } else {
> > >                                                        return false;
> > >                                                }
> > >                                        },
> > >                                        minlength: 1
> > >                        }
>
> > > and example here
> > >http://psylicyde.com/misc/jquery-validate/demo/test.html

Reply via email to