[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 e

[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 Firstname Lastname with a simple validation rule $.validator.setDefaults({

[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 tag. This tag can be any # of elements past the input or checkbox or whatever is being validated. Here's a sample:

[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: Is there an onChange method?

2009-09-24 Thread Loony2nz
ry 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 wrote: >

[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 wrote: > Got it, this code onfocusout: function(element) { this.element > (element); }, gives me what I am looking for > > Dave Buchho

[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 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 "Other", where they >

[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] Re: Is there an onChange method?

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

[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 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 wrote: > > > I'd like to trap for a f

[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: [validate] Help with errorPlacement

2009-09-16 Thread Loony2nz
d(".errorMsg") ); > > } > > Jörn > > On Wed, Sep 16, 2009 at 8:18 PM, Loony2nz 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 c

[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()); } First Name* I want to ta

[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 wrote: > I have this within my page

[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] Re: Form Validation Plugin: customize input validation

2009-06-22 Thread Loony2nz
rn > > On Mon, Jun 22, 2009 at 7:21 AM, Loony2nz wrote: > > > 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] 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] 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] Re: Add Class to all form elements

2009-06-17 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 wrote: > Hi all, > > Just for clarification, there is only one form on the page at

[jQuery] Re: Add Class to all form elements

2009-06-17 Thread Loony2nz
t; > > > > > > > $(function() { > > > > > var myforms = $("form"); > > > > > myforms.each(function(i) { > > > > > var myform = myforms.eq(i); > > > > > var myfields = $("input", myform); > > > > > myfields.each(funct

[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 from

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

2009-05-15 Thread Loony2nz
> > if you have a specific goal you want to achieve it would allow us to help > you better if we knew. > > > $(function() { > > $("select").click(function() { > > var value = $(this).val(); > if(val != 0) { > // do what you need to do} else { >

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

2009-05-11 Thread Loony2nz
ld make your life easier > > On May 11, 1:41 pm, Loony2nz wrote: > > > I had a better thought. > > > How do I get the count of options within a div? > > I can then loop thru the select options and see if any of them are > > value "0". > > > Is th

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

2009-05-11 Thread Loony2nz
selected an option"); > > } > }); > }); > > > > On Mon, May 11, 2009 at 6:55 PM, Loony2nz 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 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:

[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
equired:true}, > > individual_state: { > >    required: function(element) { > >    return $('input[name=regType]:checked').val() == 'Individual' > >    } > > }, > > business_state: { > >            required: function(element) { > >    return $(&#

[jQuery] Re: Need example of dynamic validation

2009-03-14 Thread Loony2nz
cked').val() == 'Individual' } }, business_state: { required: function(element) { return $('input[name=regType]:checked').val() != 'Individual' } } Thanks! On Mar 14, 2:55 pm, Loony2nz wrote: > validation. > > basically if they c

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

2009-03-14 Thread Loony2nz
googlegroups.com [mailto:jquery...@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

[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] select box and text field

2009-02-16 Thread Loony2nz
Feb 16, 2009 at 1:00 PM,Loony2nz wrote: > > > 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 selecte

[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 Referral Media Industry Conferences Other (please specify) If they choose "OTHE