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
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({
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.
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:
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();
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:
>
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
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
>
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!
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.
@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
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!
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
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
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
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
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!
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!
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!
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
t; > > >
> > > > $(function() {
>
> > > > var myforms = $("form");
>
> > > > myforms.each(function(i) {
>
> > > > var myform = myforms.eq(i);
>
> > > > var myfields = $("input", myform);
>
> > > > myfields.each(funct
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
>
> 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 {
>
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
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
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:
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!
equired:true},
> > individual_state: {
> > required: function(element) {
> > return $('input[name=regType]:checked').val() == 'Individual'
> > }
> > },
> > business_state: {
> > required: function(element) {
> > return $(
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
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
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
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
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
33 matches
Mail list logo