[jQuery] Re: Color Label on Form Validation Error

2007-05-23 Thread Scott Moore
Jörn, that works great. Thanks.

[jQuery] Re: Color Label on Form Validation Error

2007-05-22 Thread Scott Moore
Thanks for the information guys, though I'm not sure I'll be able to use that specific solution given other requirements for the project. Jörn, is this something you'll look to add to a future release?

[jQuery] Re: Color Label on Form Validation Error

2007-05-22 Thread Jörn Zaefferer
Scott Moore wrote: Thanks for the information guys, though I'm not sure I'll be able to use that specific solution given other requirements for the project. Jörn, is this something you'll look to add to a future release? If have it on my todo list, but am still looking for a good approach.

[jQuery] Re: Color Label on Form Validation Error

2007-05-22 Thread Jörn Zaefferer
Jörn Zaefferer wrote: Scott Moore wrote: Thanks for the information guys, though I'm not sure I'll be able to use that specific solution given other requirements for the project. Jörn, is this something you'll look to add to a future release? If have it on my todo list, but am still

[jQuery] Re: Color Label on Form Validation Error

2007-05-21 Thread Scott Moore
I set up a basic demo - http://nonsponsored.com/validation/ - but it's really not much different than your example form. So with showErrors, you're saying I'm able color the Name, Email and Password labels also? I'm not quite following how you can target those labels.

[jQuery] Re: Color Label on Form Validation Error

2007-05-21 Thread Jörn Zaefferer
Scott Moore wrote: I set up a basic demo - http://nonsponsored.com/validation/ - but it's really not much different than your example form. So with showErrors, you're saying I'm able color the Name, Email and Password labels also? I'm not quite following how you can target those labels. Ok,

[jQuery] Re: Color Label on Form Validation Error

2007-05-21 Thread Dan G. Switzer, II
I set up a basic demo - http://nonsponsored.com/validation/ - but it's really not much different than your example form. So with showErrors, you're saying I'm able color the Name, Email and Password labels also? I'm not quite following how you can target those labels. Ok, I've tried around a

[jQuery] Re: Color Label on Form Validation Error

2007-05-21 Thread Jörn Zaefferer
Dan G. Switzer, II wrote: What I've done in the past is just add an onfocus event to remove the classes: // for any input field in the signup form, add a onfocus event $(#userForm input).focus( // everything in this function is executed function (){ // $(this)

[jQuery] Re: Color Label on Form Validation Error

2007-05-20 Thread Emil Ivanov
$('#publish_form').validate({ event: 'blur', rules: { number_field: { required: true, number: true } // You know what to put here },

[jQuery] Re: Color Label on Form Validation Error

2007-05-20 Thread Jörn Zaefferer
Scott Moore wrote: Not sure if I'm just missing this or what, but I'm using Jörn's wonderful form validation plug-in and can't seem to find how to add an error class to the label next to the input field that didn't validate. Please don't mistake this as a question about the error messaging, as

[jQuery] Re: Color Label on Form Validation Error

2007-05-20 Thread Jean Nascimento
and if he find for error class and subistitute the label class for some label_error_class ??? On 5/20/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Emil Ivanov wrote: Using the errorPlacement event/callback you can place the label whereever you want. It's automatically generated with