[jQuery] [validate] Error Labels don't remove after field is validated

2010-01-14 Thread Loony2nz
I am using jorn's awesome validation plugin for sometime. Every now and then I get this issue. Hit the submit button and the error messages pop up next to the invalid field. no problem. I enter the correct data in the field and go to the next field. Unfortunately, after the field is valid, the

[jQuery] VALIDATE - error labels don't disappear

2009-12-27 Thread Loony2nz
Using Jorn's awesome validator for the umpteenth time..I'm stumped on this one issue I'm having. I made a simple form form name=testForm id=testForm method=get action= Firstname input type=text name=firstname id=firstname class=required / br

[jQuery] [validate] - jquery plugin + recaptcha = anyone get this to work?

2009-12-06 Thread Loony2nz
I've seen the validation method for captha at this URL: http://jquery.bassistance.de/validate/demo/captcha/ just wondering if anyone has gotten this to work with reCaptcha? I'm having a #$*( of a time to get this to validate with reCaptcha...any help is much appreciated.

[jQuery] [validate] - errorPlacement help

2009-11-24 Thread Loony2nz
Hello, I'm having difficulty traversing the DOM with the validate plugin. I'm sure Jorn can figure this out quikcly :) I'm trying to target the error message to be placed in the span class=errorMsg tag. This tag can be any # of elements past the input or checkbox or whatever is being validated.

[jQuery] (validate) submit form in lightbox?

2009-09-25 Thread Loony2nz
Hello all, I have a form that opens up in a lightbox (shadowbox to be exact). And I'm having a heckuva time to get the form in the iframe to submit. i'm using the submitHandler option within the validate plugin like so: submitHandler: function(form) { form.submit();

[jQuery] Re: Validate Text Field onblur (Bassistance Validation Plugin)

2009-09-24 Thread Loony2nz
do you have an example of this somehwere? I think I could use this for upcoming forms I have in my pipeline. Thanks! On Sep 1, 10:33 am, Dave Buchholz - I-CRE8 off...@i-cre8.com wrote: Got it, this code onfocusout: function(element) { this.element (element); }, gives me what I am looking for

[jQuery] Re: Is there an onChange method?

2009-09-24 Thread Loony2nz
is then fulfilled properly, the error message disappears, but the form/lightbox stays the same size. I'd like to shrink the lightbox each time a form field is validated. What API function can I call when a field goes from invalid to valid? thanks! On Sep 18, 4:47 pm, Loony2nz loony...@gmail.com wrote

[jQuery] Re: jQuery Validate (bassistance)

2009-09-22 Thread Loony2nz
Check out this example: http://www.coldfusionjedi.com/index.cfm/2009/2/16/jQuery-Form-Validation-with-Selects On Sep 22, 9:35 am, ripcurlksm kevin.mccorm...@cox.net wrote: I have a How did you hear about us? with a series of checkboxes that is working great, however there is an option for

[jQuery] Re: Is there an onChange method?

2009-09-18 Thread Loony2nz
huh? You lost me there. On Sep 17, 5:55 pm, lanxiazhi lanxia...@gmail.com wrote: you code defined when to enable,disable a button/field,so add the code there.

[jQuery] (validate plugin) Is there an onChange method?

2009-09-18 Thread Loony2nz
I'd like to trap for a field going from invalid to valid. something like, onchange: function(){ alert('Yay, the field is valid and you can follow instructions'); } Is there something in the plugin that I can use to intercept this? thanks!

[jQuery] [validate] Is there an onChange method?

2009-09-17 Thread Loony2nz
I'd like to trap for a field going from invalid to valid. something like, onchange: function(){ alert('Yay, the field is valid and you can follow instructions'); } Is there something in the plugin that I can use to intercept this? thanks!

[jQuery] Re: Is there an onChange method?

2009-09-17 Thread Loony2nz
@MorningZ: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ On Sep 17, 5:01 pm, MorningZ morni...@gmail.com wrote: Which plugin do you speak of?  that would be a huge help for others to help you On Sep 17, 7:42 pm, Loony2nz loony...@gmail.com wrote: I'd like to trap

[jQuery] [validate] Help with errorPlacement

2009-09-16 Thread Loony2nz
Hello, I need help with targeting a class on a TD to hold error messages with jQuery form validator plug-in. This is my sampling of code: script errorPlacement: function(error, element){ error.appendTo( element.parent().next()); } / script tr style=border:0; td style=border:0;

[jQuery] Re: [validate] Help with errorPlacement

2009-09-16 Thread Loony2nz
(.errorMsg) ); } Jörn On Wed, Sep 16, 2009 at 8:18 PM, Loony2nz loony...@gmail.com wrote: Hello, I need help with targeting a class on a TD to hold error messages with jQuery form validator plug-in. This is my sampling of code: script errorPlacement: function(error

[jQuery] Re: nyroModal manual opening a page

2009-06-23 Thread Loony2nz
figured it out :) var datastring = $(data).serialize(); var URL = /thankyoupage.cfm? + datastring; $.nyroModalManual({ type: 'iframe', modal: true, url: URL }); On Jun 18, 3:39 pm, Loony2nz loony...@gmail.com wrote: I have this within my page to open a page manually

[jQuery] Re: Form Validation Plugin: customize input validation

2009-06-22 Thread Loony2nz
OICok. i'm not really good with regular expressions (hell, i'm absolutely horrible at it), but I'll give it a shot. On Jun 22, 1:15 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: You can write a custom method:http://docs.jquery.com/Plugins/Validation/Validator/addMethod Jörn

[jQuery] NyroModal stripping out my JS

2009-06-22 Thread Loony2nz
I have NyroModal plugin pulling in a page with javascript on the page. And NyroModal is stripping out the scripts. script header tags are gone. inline JS is gone. What gives? :( Thanks

[jQuery] Form Validation Plugin: customize input validation

2009-06-21 Thread Loony2nz
This is in regards to Jörn Zaefferer's plug in. How do you customize input validation so that I can remove foul language? So that first name or last name doesn't have f*ck you or something like that. is this possible? Thanks!

[jQuery] Re: Add Class to all form elements

2009-06-18 Thread Loony2nz
, 2009 at 7:19 PM, Loony2nz loony...@gmail.com wrote: Hey everyone, I need help with a jquery task. I have a form that has it's HTML inserted into the database (yeah yeah I know..not my idea..I'm new here and just finding this out). Anyway, each form field has

[jQuery] Re: Add Class to all form elements

2009-06-18 Thread Loony2nz
The easiest implementation was Gustavo's. however, how do i exlcude the submit button? I guess i can go back and do a single call to remove the class after the fact. On Jun 17, 11:47 pm, Loony2nz loony...@gmail.com wrote: Hi all, Just for clarification, there is only one form on the page

[jQuery] nyroModal manual opening a page

2009-06-18 Thread Loony2nz
I have this within my page to open a page manually: $.nyroModalManual({ url: '/thankyouPage.cfm' }); Is there a way to pass URL parameters to the URL attribute? I tried HASH, but that didn't work. Thoughts? Thanks!

[jQuery] Add Class to all form elements

2009-06-01 Thread Loony2nz
Hey everyone, I need help with a jquery task. I have a form that has it's HTML inserted into the database (yeah yeah I know..not my idea..I'm new here and just finding this out). Anyway, each form field has an embedded class in the HTML. The form is dynamically generated. Can be anywhere

[jQuery] Re: Help with div, css selector, and form field...

2009-05-15 Thread Loony2nz
you need to do} else { alert(you have not selected an option); } }); }); /script On Mon, May 11, 2009 at 8:47 PM, Loony2nz loony...@gmail.com wrote: @Mike:  Yeah that won't work.  Most of the values aren't unique. On May 11, 11:43 am, Mean Mike mcgra...@gmail.com wrote: wouldn't

[jQuery] Help with div, css selector, and form field...

2009-05-11 Thread Loony2nz
I need some help with jquery's syntax for how to pop an error message when a select field is blank. There's a form that uses the same css class for all of it's form fields. However, I would like to check to see if at least one section of the form is not blank. Here's my code: div

[jQuery] Re: Help with div, css selector, and form field...

2009-05-11 Thread Loony2nz
, May 11, 2009 at 6:55 PM, Loony2nz loony...@gmail.com wrote: I need some help with jquery's syntax for how to pop an error message when a select field is blank. There's a form that uses the same css class for all of it's form fields.  However, I would like to check to see if at least one

[jQuery] Re: Help with div, css selector, and form field...

2009-05-11 Thread Loony2nz
life easier On May 11, 1:41 pm, Loony2nz loony...@gmail.com wrote: I had a better thought. How do I get the count of select options within a div? I can then loop thru the select options and see if any of them are value 0. Is this possible? On May 11, 10:09 am, waseem sabjee

[jQuery] Dreamweaver jQuery Extension for jQuery 1.3?

2009-03-22 Thread Loony2nz
I was only able to find jQuery 1.2 extension for Dreamweaver. Anyone know if there's a 1.3 in the works or if it's available somewhere? Thanks!

[jQuery] Re: Need example of dynamic validation

2009-03-20 Thread Loony2nz
yup works for me. just not sure if it's the best way. As with any language..there's more than one way to skin a cat. On Mar 14, 7:51 pm, Rick Faircloth r...@whitestonemedia.com wrote: I'm not familiar enough with it to validate it for you, but I'd like to know if it's working for you...

[jQuery] [validate] Need example of dynamic validation

2009-03-14 Thread Loony2nz
Hi all, I need an example for this situation: I have a form that dynamically shows different parts of the form based on radio button choices. Example: Registrion type: Business or Individual radio buttons If they click on Business, I have a portion of the page only show business information

[jQuery] Re: [validate] Need example of dynamic validation

2009-03-14 Thread Loony2nz
...@googlegroups.com] On Behalf Of Loony2nz Sent: Saturday, March 14, 2009 5:31 PM To: jQuery (English) Subject: [jQuery] [validate] Need example of dynamic validation Hi all, I need an example for this situation: I have a form that dynamically shows different parts of the form based

[jQuery] Re: Need example of dynamic validation

2009-03-14 Thread Loony2nz
() == 'Individual' } }, business_state: { required: function(element) { return $('input[name=regType]:checked').val() != 'Individual' } } Thanks! On Mar 14, 2:55 pm, Loony2nz loony...@gmail.com wrote: validation. basically if they choose individual, show the individual

[jQuery] [validate] select box and text field

2009-02-16 Thread Loony2nz
I'm using the jQuery plugin: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ I have a select box that needs to make a text input required if a specific value in the select box is selected. select name=hfrom option value= selectedSelect/option option value=ReferralReferral/option

[jQuery] Re: [validate] select box and text field

2009-02-16 Thread Loony2nz
Thanks Jorn. You've answered the question here and over at cfjedi. On Feb 16, 4:12 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: There are two variations of the required method that should do the trick:http://docs.jquery.com/Plugins/Validation/Methods/required Jörn On Mon,