Got any code to show us?
You need an event to fire off the remote call, either onBlur or
onClick of a button. You examine the returned data and act
accordingly.
Adrian
On Jan 10, 12:28 pm, Richard Beacroft wrote:
> People enter an address to lookup on a google map, this makes an
> asynchronous
http://docs.jquery.com/Plugins/Validation/Methods
Also, I found it was worth while to look into jquery.validation.js
code.
On Nov 17, 8:55 am, "Atkinson, Sarah"
wrote:
> Is there a list somewhere of what the options are for the rules (required,
> email)
> I can't seem to find more info on this
Ahhh...
Ok, I might opt for just putting an error message after the element
instead then rather than creating a box like i'm doing now.
Many thanks Jorn for your help!
On Nov 13, 5:43 pm, Jörn Zaefferer
wrote:
> Then this:
>
> ,success: function(element){
> 157 var errorDiv = element.parents('.
Then this:
,success: function(element){
157 var errorDiv = element.parents('.error');
158 element.remove();
159 errorDiv.siblings().remove();
160 errorDiv.replaceWith(errorDiv.children());
161 }
You replace the div? That causing the DOM to rerender, including the input,
killing the focus.
Jörn
Strangely, It seems to be doing it even after removing jNice. - I've
updated the test site.
On Nov 13, 4:23 pm, Jörn Zaefferer
wrote:
> Looks like jNice is causing that issue. Did you try removing that to see
> what happens?
>
> Jörn
>
> On Fri, Nov 13, 2009 at 4:58 PM, Samuurai wrote:
> > Yeah.
Looks like jNice is causing that issue. Did you try removing that to see
what happens?
Jörn
On Fri, Nov 13, 2009 at 4:58 PM, Samuurai wrote:
> Yeah..
>
> www.racedaystaff.com - log in as jorn/jorn then click "proceed to
> site" then click "register" at the top.
>
> Thanks for looking at this !
Sorry - I have a goldfish memory today. - Repeating myself :p
On Nov 13, 4:01 pm, Samuurai wrote:
> Oh - Log in as jorn/jorn
>
> On Nov 13, 3:58 pm, Samuurai wrote:
>
> > Yeah..
>
> >www.racedaystaff.com-log in as jorn/jorn then click "proceed to
> > site" then click "register" at the top.
>
> >
Oh - Log in as jorn/jorn
On Nov 13, 3:58 pm, Samuurai wrote:
> Yeah..
>
> www.racedaystaff.com- log in as jorn/jorn then click "proceed to
> site" then click "register" at the top.
>
> Thanks for looking at this !
>
> On Nov 13, 3:51 pm, Jörn Zaefferer
> wrote:
>
> > Do you have a testpage?
>
>
Yeah..
www.racedaystaff.com - log in as jorn/jorn then click "proceed to
site" then click "register" at the top.
Thanks for looking at this !
On Nov 13, 3:51 pm, Jörn Zaefferer
wrote:
> Do you have a testpage?
>
> Jörn
>
> On Fri, Nov 13, 2009 at 4:40 PM, Samuurai wrote:
> > I'm having a stran
Thanks Leonardo...
I figured it out after digging through several examples. The
documentation for this plugin has a huge gap in it. It shows an
example of how to define a custom validator but no where does it
explain how to use it. The trick being as you mentioned, defining it
in the Rules or you
One thing is your method name and other is your field name. If the name of
your field is company and your method is company so:
rules:{
company:{
company:true
}
}
Maybe is better rename your method to not confuse.
On Thu, Oct 22, 2009 at 13:24, JMan wrote:
>
> Still no go...
Still no go... below is my code. I just want to pop a dialog to ask
the user if they are sure they want to leave the company name blank.
The field is not required. I thought it would be easier than this? I
can't get teh addMethod to work or fire at all on validation.
//validates the form
U need set the rules for your validation:
frmSubmittal.validate({
debug: false,
focusCleanup: false,
focusInvalid: false,
onfocusout: false,
onkeyup: false,
errorPlacement: function(error, element) {
error.prependTo( element.parents("div.ctrlHolder"));
},
er
You can create your own validate method:
http://docs.jquery.com/Plugins/Validation/Validator/addMethod#namemethodmessage
jQuery.validator.addMethod("digitsAndLineBreak", function(value, element) {
return /^[\d|\n]+$/.test(value);
}, "Please enter only digits");
then:
$("#quicksend_form").val
It would be great if you could post your repacked version for us.
Thanks!
-Mario
I found this link:
http://return-true.com/2008/12/fixing-jquery-validator-plugin-in-internet-explorer-6/
Looks like it's a character set issue.
-Mario
On Jun 29, 4:21 pm, Tristan wrote:
> The jquery.validate.pack.js file found
> onhttp://bassistance.de/jquery-plugins/jquery-plugin-validati
Try $("#frm")[0].submit()
On Jul 20, 1:56 pm, Adam P wrote:
> I'm using the Validation plugin for JQuery and was wondering if there
> was a function to submit the form without causing it to validate the
> form. I have a table with a list of radio-buttons and above that is a
> drop down list of
In the button's click handler:
if ($("#myform").validate().form()) {
// submit form
}
On Apr 22, 9:48 am, Brad wrote:
> To be more specific, validation is working prior to clicking the
> button. For example I have a date field in the form
To be more specific, validation is working prior to clicking the
button. For example I have a date field in the form and entering
garbage will present an "enter a valid date" message, but I also have
some fields that are simply required. Clicking the button doesn't
appear to run any pre-submit val
Yeah, I know about the regular behaviour, but the problem is that the
live validation behaves incorrect.
When it validates an input as valid, it sometimes doesn't revalidate
it when you clear the field (so it should state as invalid, but it
still says it's valid).
The behaviours is random. Somet
i also detected some difference between the demo's behavior and the docs.
i'm not sure what sequence of ui actions led to the result in the attached
png but i've seen it twice now.
On 4/17/09 8:17 AM, "Jörn Zaefferer" wrote:
>
> The behaviour is described here:
> http://docs.jquery.com/Plugins/
The behaviour is described here:
http://docs.jquery.com/Plugins/Validation/Reference#Validation_event
Jörn
On Fri, Apr 17, 2009 at 10:46 AM, Jonas wrote:
>
> Example form: http://jquery.bassistance.de/validate/demo/milk/
> (this is the demo for the script on bassistance.de)
>
> When it does 'li
The response for the remote request is wrong:
http://betan.midoo.se/?data%5BUser%5D%5Bemail%5D=bla%40bla.com
That should be just "true", nothing else.
And, completely unrelated: The error message isn't hidden for a valid
field. You can check the state of the field in Firebug. Once its
valid, the e
Sure. I translated the error messages to english so that you would
understand :)
http://betan.midoo.se
On 13 Apr, 16:28, Jörn Zaefferer
wrote:
> Could you post a testpage? Can't see anything wrong in the snippets
> you provided - its probably something seemingly unrelated.
>
> Jörn
>
> On Sun, A
Could you post a testpage? Can't see anything wrong in the snippets
you provided - its probably something seemingly unrelated.
Jörn
On Sun, Apr 12, 2009 at 4:18 PM, Victorr wrote:
>
> Ok. But what do i need too echo to get a false value and an error
> message?
>
> thanks!
>
> On 12 Apr, 10:37, J
Ok. But what do i need too echo to get a false value and an error
message?
thanks!
On 12 Apr, 10:37, Jörn Zaefferer
wrote:
> You need to echo "true" for a valid value.
>
> Jörn
>
> On Sun, Apr 12, 2009 at 1:02 AM, Victorr wrote:
>
> > I'm using CakePHP, jQuery and the validation plugin. I'm ha
You need to echo "true" for a valid value.
Jörn
On Sun, Apr 12, 2009 at 1:02 AM, Victorr wrote:
>
> I'm using CakePHP, jQuery and the validation plugin. I'm having some
> problems. I'm trying to check if a email is already in use but I can't
> seem to get it too work.
>
> I'm just trying to get
Man, you thought of everything. Thank you.
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Jörn Zaefferer
Sent: Tuesday, March 24, 2009 10:42 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Validation plugin: combine functions
> }
> }
> }
>
>
> andy
>
> From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
> Behalf Of Jörn Zaefferer
> Sent: Monday, March 23, 2009 5:34 PM
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: V
}
}
andy
_
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of Jörn Zaefferer
Sent: Monday, March 23, 2009 5:34 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Validation plugin: combine functions with strings on
remote error
Passing a f
groups.com
Subject: [jQuery] Re: Validation plugin: combine functions with strings on
remote error
Passing a function as a message happens all the time when using
$.format("... {0}") as messages. The function is expected to return the
formated message, so you can just return the string value
Passing a function as a message happens all the time when using
$.format("... {0}") as messages. The function is expected to return the
formated message, so you can just return the string value you want to
display at the end of your function.
Jörn
On Mon, Mar 23, 2009 at 10:39 PM, Andy Matthews
w
Ah ignore. Team member left of method attribute.
On Feb 25, 9:07 am, kevinm wrote:
> Jörn ,
>
> New issue, that is related.
>
> When I use form.submit() inside the modal window it does not submit
> correctly.
>
> When we did this (before applying validate)
>
> function submitForm() {
> d
Jörn ,
New issue, that is related.
When I use form.submit() inside the modal window it does not submit
correctly.
When we did this (before applying validate)
function submitForm() {
document.myform.submit();
parent.$.nyroModalRemove(); // this closes the modal window
Here's hoping the next one finds this:
http://docs.jquery.com/Plugins/Validation#Too_much_recursion
Jörn
On Tue, Feb 24, 2009 at 7:01 PM, kevinm wrote:
>
> Ah, makes total sense. Thanks
>
> On Feb 24, 1:01 pm, Jörn Zaefferer
> wrote:
>> $(form).submit() triggers another round of validation, res
Ah, makes total sense. Thanks
On Feb 24, 1:01 pm, Jörn Zaefferer
wrote:
> $(form).submit() triggers another round of validation, resulting in
> another call to submitHandler, and voila,recursion. Replace that with
> form.submit(), which triggers the native submit event instead and not
> the vali
$(form).submit() triggers another round of validation, resulting in
another call to submitHandler, and voila, recursion. Replace that with
form.submit(), which triggers the native submit event instead and not
the validation.
Jörn
On Tue, Feb 24, 2009 at 4:58 PM, kevinm wrote:
>
> James,
>
> We j
James,
We just ran into the same issue. In my case we are opening a modal
window with nyroModal. Here is the validate function.
var myValidate = $("#myform").validate({
ignoreTitle: true,
focusCleanup: false,
ignoreTitle: tr
If you're trying to submit the form even if it doesn't validate...then why
validate in the first place? i'm confused
cheers
Michael Lawson
Content Tools Developer, Global Solutions, ibm.com
Phone: 1-919-517-1568 Tieline: 255-1568
E-mail: mjlaw...@us.ibm.com
'Examine my teachings critically, as
Since you can't show any code, with only what I see there should not
be any issues...
That is, there is no issue with using two validate functions on two
different forms, each with it's own set of rules.
You're going to have to show more code for us to get to down to the
issue.
On Feb 8, 5:54 pm
You can add custom rule with your custom validator. Read documentation
here: http://docs.jquery.com/Plugins/Validation
Read jQuery HowTo Resource - http://jquery-howto.blogspot.com
On Fri, Feb 6, 2009 at 7:22 AM, claudes wrote:
>
>
> using validation plugin, is there a way to validate
You can with my form validation plugin.
http://shugartweb.com/jquery/form
There is an option that you can pass called 'ignore'. It is a selector
for all fields that should be ignored in validation. By default it is
':hidden', but you can put anything in there such as ':hidden,
[value="default va
I was checking it on the link that you sent me , so do you think I need it
to have form tag seperately in each tab ... and then use it or I can just
use aspnetForm...
The problem is how in each tab i will have different validation ... Like
tab1 will have textbox1 and submitbutton1...tab2 will hav
It is being used and is stable in an enterprise environment so I
shouldn't say "alpha". The only reason I said that was because I do
want to do a lot more work to it and the api might change.
Trey
On Feb 5, 9:42 am, tres wrote:
> Varun,
>
> I've actually solved a problem like this for the com
Varun,
I've actually solved a problem like this for the company that I work
for. I have 5 tabs, all located within 1 form. I also had to label the
tabs that had errors and focus the first one that had errors. This is
simply unachievable without a bit of "hacking" with the .validate()
plugin. Don'
Well, you can have as many elements as you want on a page, but
you can only have one element per page. Not sure
if that will help you any.
On Feb 3, 6:12 pm, varun wrote:
> Hi Everybody
>
> I am trying to use validation plugin with ui tbas.
>
> suppose I have 5 tabs on page and every tab have
Sorry, the third validator must only get "activated" if both are empty
(in other words, it must return true if either is not empty):
function validateNameInputs(value, element) { return
firstNameInput.value || lastNameInput.value; }
On Jan 30, 11:19 am, Mihai Danila wrote:
> There was a small
There was a small typo in validateLastNameInput. Here's the corrected
code.
jQuery.validator.addMethod('first-name-input', validateFirstNameInput,
'First name is missing.');
jQuery.validator.addMethod('last-name-input', validateLastNameInput,
'Last name is missing.');
jQuery.validator.addMetho
I think you can put three validators on the fields, with
jQuery.validator.addMethod. I don't know if you can add multiple
validators for the same CSS class, so I'm putting extra CSS classes on
the inputs:
jQuery.validator.addMethod('first-name-input', validateFirstNameInput,
'First name is mis
Thanks Steve! Fixed and commited:
http://code.google.com/p/jqueryjs/source/detail?r=6159
Jörn
On Fri, Jan 23, 2009 at 4:44 AM, Steve Blades wrote:
> Thanks again to Jorn for a fantastic plugin. One thing I noticed, with the
> additional-methods.js file that is included with the download, is a s
Use min: 0.
Jörn
On Fri, Dec 19, 2008 at 8:02 PM, Adam wrote:
>
> How can I create a rule in the validation plugin to disallow negative
> numbers. I have a text field that should accept any number > 0
>
> thanks,
>
> A.
Try this: showErrors: function() {}
Jörn
On Tue, Dec 16, 2008 at 5:45 AM, Sean Allen wrote:
>
> Is there a way to instruct the validation plugin to not insert any error
> element?
>
>
I copied it straight from the demo with just a couple minor changes...
going to remove the code that I don't need once I work this out...
$(document).ready(function(){
$.validator.messages.required = "";
$("#lf").bind("invalid-form.validate", function(e, validator) {
No idea, I'd need to see some code, a testpage is prefered.
Jörn
On Sat, Dec 13, 2008 at 4:03 PM, Sean Allen wrote:
>
> I already have that in place.
>
> How do I get the autogenerated label to not do style="display:inline" ?
> In that demo there is no such element styling on the label created f
I already have that in place.
How do I get the autogenerated label to not do style="display:inline" ?
In that demo there is no such element styling on the label created for
errors.
On Dec 12, 2008, at 4:37 PM, Jörn Zaefferer wrote:
In that demo this line hides the default messages for the
In that demo this line hides the default messages for the required method:
$.validator.messages.required = "";
Jörn
On Fri, Dec 12, 2008 at 9:17 PM, Sean Allen wrote:
>
> playing around with it.
>
> don't want to get error messages displayed.
>
> i'm just putting in a general error message at t
Details about the default behaviour are here:
http://docs.jquery.com/Plugins/Validation/Reference#Validation_event
You can make the validation more aggresive with some custom event handling:
$("input[name=q4]").click(function() {
$(this).valid();
});
Jörn
PS: You really shouldn't use a single
Could you post a testpage? Usually file inputs work just fine, see
this demo: http://jquery.bassistance.de/validate/demo/errorcontainer-demo.html
Jörn
On Thu, Sep 25, 2008 at 4:03 PM, Adam <[EMAIL PROTECTED]> wrote:
>
> I'm trying to validate that someone has selected a file for upload
> before s
Jörn,
Great catch that fixed it :) Thanks so much for taking a look.
Bill
On Sep 10, 8:09 am, "Jörn Zaefferer" <[EMAIL PROTECTED]>
wrote:
> Your script tag seems to get ignored in Firefox: You've got
> type="text/jscript" there, which should be text/javascript. That may
> be it.
>
> Jörn
>
> On
Your script tag seems to get ignored in Firefox: You've got
type="text/jscript" there, which should be text/javascript. That may
be it.
Jörn
On Tue, Sep 9, 2008 at 7:24 PM, Bill <[EMAIL PROTECTED]> wrote:
>
> I am using the great Validation plugin by Jörn Zaefferer (http://
> bassistance.de/jquer
hi All ,
an interesting find...am not sure if its a bug or not..but am open to
debate.
Looking at the jquery.append()...which is considerably slow for methe
same with jquery.html()
basically the latter jquery.html() internally routes back to the
query.append() method ..is this a bug
ca
See
http://docs.jquery.com/Plugins/Validation/Reference#Fields_with_complex_names_.28brackets.2C_dots.29
Jörn
On Fri, Sep 5, 2008 at 12:56 AM, nonsense <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I'm using Validation plugin (http://docs.jquery.com/Plugins/
> Validation) and I want to use it to check
Got it. Thanks.
On Aug 25, 10:33 am, "Jörn Zaefferer" <[EMAIL PROTECTED]>
wrote:
> You can use the highlight-option to remove the success class.
>
> Jörn
>
> On Mon, Aug 25, 2008 at 4:16 AM, xxkylexx <[EMAIL PROTECTED]> wrote:
>
> > Hey guys,
> > I am using JQuery Validation Plugin and am getting
You can use the highlight-option to remove the success class.
Jörn
On Mon, Aug 25, 2008 at 4:16 AM, xxkylexx <[EMAIL PROTECTED]> wrote:
>
> Hey guys,
> I am using JQuery Validation Plugin and am getting a bug that I can't
> seem to figure out.
>
> When the user inputs a correct input, it shows my
Please, does anyone knows why do I need to push twice the submit
button so the validation be updated?
Thanks,
Miguel
On Jun 25, 2:01 pm, shapper <[EMAIL PROTECTED]> wrote:
> Hi,
>
> It worked but now I get a new problem which I also notice before! I
> though it was due to this but it seems it is
Hi,
Sorry, I can't..
But if you copy and paste the exact code I have advised, and include
the requisite jQuery and validation JS, you can see locally the issue
that still baffles me.
Any help figuring out where I'm going wrong would be great, thanks.
On Jun 20, 3:17 am, "Jörn Zaefferer" <[EMAIL
Please post a testpage.
Jörn
On Wed, Jun 18, 2008 at 1:53 AM, Lossed <[EMAIL PROTECTED]> wrote:
>
> Hi. I tried posting this to the plugin group days ago but it's not
> showing
> and I'm not sure if it's every going to show.
>
>
> My form disappears when the focus changes between form fields. He
All fixed up. :-)
Thanks to Jorn for an awesome plugin!
Okay, problem #2 from the original post has been solved. I finally found
the .errors() function and was able to modify it to suit my purposes.
Any ideas on how to solve problem #1 would be much appreciated. :-)
Thanks,
Matt
I'm 99.9% certain that I have correctly deduced that the reason for the
continued addition of the error messages to the DOM is that the errorsFor:
function() [see below] is not finding the ones that have been added already.
errorsFor: function(element) {
> return this.errors().filter('p[id="e
Please update to jQuery 1.2.6, the issue causing the validation plugin
to fail is fixed there.
Jörn
On Sun, May 25, 2008 at 1:56 PM, <[EMAIL PROTECTED]> wrote:
>
> My system it's working with jQuery 1.2.3 and has the validation Plugin
> with the latest version , but When I changed the jquery to
You can use the php file provided in the download (within
demo/marekto) as a reference to get the parameter and return the
result. I can't help you with actually implementing the check, which
most likely needs to select something from a database to check if the
address already exists. There are pl
HatemJaber schrieb:
I am using the Validation plugin from http://jquery.bassistance.de/validate/demo
which is a great plugin. I just found out after browsing the docs some
more that it has the capability of dynamically adding a row of data. I
would like to know how I can remove a row of data. Af
Dave Stewart schrieb:
Jorn,
I've done some work on selectors for groups, and it's actually quite
easy to select a group or sub group for validation, although I don't
know the details of your implementation, so I wont suppose to imply
anything.
As usual I've uploaded some demo code for you to ta
Jorn,
I've done some work on selectors for groups, and it's actually quite
easy to select a group or sub group for validation, although I don't
know the details of your implementation, so I wont suppose to imply
anything.
As usual I've uploaded some demo code for you to take a look.
www.
Dave Stewart schrieb:
Jorn,
Here is a live example.
http://www.janepatrick.co.uk/admin/test/associative.php
Hopefully it's in your interest to examine this issue further!
Thanks, I'll definitely take a look, though it won't make it into 1.2.1.
Jörn
Jorn,
Here is a live example.
http://www.janepatrick.co.uk/admin/test/associative.php
Hopefully it's in your interest to examine this issue further!
Many thanks,
dave
Rus Miller schrieb:
Also, I noticed that even though the 'Check URL' field on my form
(http://monovisiondesign.com/client/jquery/validate-url/form.php) is
not required, it still performs a remote call and a label.checked is
applied to the field when it's left empty. Am I doing something wrong
o
My issue is that remote requests, especially those involving an
external server, can take a second or two. It's nice to give the
user an indication that something is happening, which is why a spinner
isn't 'useless'. It would be great if someone could give me a push in
the right direction.
Als
Rus Miller schrieb:
There is a label.error and a label.checked but does anyone know how I
would display a label.pending (perhaps with a spinner) while the
validation (especially a remote request) is happening?
Thanks.
You can still use jQuery's ajax events to display a busy-indicator:
http:
I made a small discovery (in my sleep no less!) that works in HTML,
but screws up the PHP:
HTML:
If I put the array properties in single quotes (the spaces are to make
it clearer), the controls are validated as a group! This is good.
PHP:
However, the PHP also receives those single quotes, so
Tristan schrieb:
Hi,
I'm trying to create a new custom validation method similar to the
other methods included in 'additional-methods.js'. I've created my
method like this:
jQuery.validator.addMethod('dateAfter', function(value, element,
param) {
var dVal = new Date();
var dPara
Thanks for catching that. The docs for the validation plugin are
currently being moved from the source code to the wiki and there has
also been some re-organization for the upcoming release of v1.2, so
the docs may be out of sync with the code for a few more days. We'll
make sure to get these li
Alexander Graef schrieb:
Hi,
thanks :) How would I reference the name for the rule and message
preferences ?
Using test[] would break the javascript, can I use 'test[]' as the key
value?
Sure, this is legal javascript:
rules: {
'test[]': "required"
}
-- Jörn
opment
http://dev.portalzine.de
pro. portalZINE® - customized experience
http://pro.portalzine.de
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Alexander Graef
Sent: Thursday, October 11, 2007 7:52 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re
TECTED] On
Behalf Of Jörn Zaefferer
Sent: Thursday, October 11, 2007 6:26 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: validation plugin: validation of checkboxes fail
Alexander Graef schrieb:
> Hi,
>
> For the multi select:
>
> one
> two
>
Alexander Graef schrieb:
Hi,
For the multi select:
one
two
three
four
five
This allows you to pass the selected items via a form post and receive them
as an array.
Same applies for the checkboxes:
Steak:
Pizza:
Chicken:
If your serverside prefers
:[EMAIL PROTECTED] On
Behalf Of Jörn Zaefferer
Sent: Wednesday, October 10, 2007 8:30 PM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: validation plugin: validation of checkboxes fail
Alexander Graef schrieb:
> [...]
> This is a wrong scenario, as normally each checkbox has its own uniqu
Alexander Graef schrieb:
[...]
This is a wrong scenario, as normally each checkbox has its own unique name
within a form. The validation fails if the names are different for each
checkbox. How do I chain them for validation with each checkbox having its own
name ?
[...]
I have no idea how t
n".
-- Josh
- Original Message -
From: "wattaka" <[EMAIL PROTECTED]>
To: "jQuery (English)"
Sent: Saturday, October 06, 2007 6:11 AM
Subject: [jQuery] Re: Validation plugin errors on IE6
Hi Jörn,
The valide.js works, the validate pack does not, same err
Hi Jörn,
The valide.js works, the validate pack does not, same error as before.
Thanks. Just let me know, I´ll be glad to test.
On Oct 6, 12:41 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> wattaka schrieb:> This is just plain infuriating, this piece code works
> perfectly well
> > on FF 2,
wattaka schrieb:
This is just plain infuriating, this piece code works perfectly well
on FF 2, on IE6 , it just causes errors:
[...]
Does anyone have any ideas?
Could you please give the latest revision a try?
http://dev.jquery.com/view/trunk/plugins/validate/
I haven't managed to just rele
OK, my html was not valid - I had improperly nested form tags. I guess FF
is more strict about that sort of thing. Working fine now.
-- Josh
- Original Message -
From: "seedy" <[EMAIL PROTECTED]>
To:
Sent: Friday, September 28, 2007 1:38 PM
Subject: [jQuery
Original Message -
From: "seedy" <[EMAIL PROTECTED]>
To:
Sent: Friday, September 28, 2007 1:38 PM
Subject: [jQuery] Re: Validation plugin noob
are your fields inside a table?
I was seeing that in IE, if fields were in a table cell, the errors were
being added but the c
Yes they are in a table - that may be the issue - although I'm testing in
FF. I'll make some changes and report back.
-- Josh
- Original Message -
From: "seedy" <[EMAIL PROTECTED]>
To:
Sent: Friday, September 28, 2007 1:38 PM
Subject: [jQuery] Re: Valid
are your fields inside a table?
I was seeing that in IE, if fields were in a table cell, the errors were
being added but the cell wasn't getting larger and the errors could not be
seen.
Josh Nathanson-3 wrote:
>
>
> Hey all,
>
> Using Jorn's Validation plugin, it's not displaying the error m
know I've got the js file included correctly, and it's doing
> *something*,
> because when I set debug = true, the form doesn't submit.
>
> -- Josh
>
>
>
> - Original Message -
> From: "Rick Faircloth" <[EMAIL PROTECTED]>
> To:
correctly, and it's doing *something*,
because when I set debug = true, the form doesn't submit.
-- Josh
- Original Message -
From: "Rick Faircloth" <[EMAIL PROTECTED]>
To:
Sent: Friday, September 28, 2007 12:55 PM
Subject: [jQuery] Re: Validation plugin no
Hi, Josh...
In your HTML, did you specify a place for the error
message to appear?
This is from Jorn's example:
Firstname
I handle my error messages a little different than the
example above, preferring my error messages above the input field.
If I'm not mistaken I believe yo
voltron schrieb:
Hi Jörn, I think it works now. Do the errors which I define in the
error_container override the default ones in the plugin? Maybe it
would be cool to make this a default validator for your plugin? I
think many others might want this functionality. Thanks for looking
into this pr
1 - 100 of 147 matches
Mail list logo