[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-18 Thread Jörn Zaefferer
Mandy Singh wrote: Another observation: Including the validate plugins packed version throws an error in IE6 but works fine in IE7 and FF. using the min version works fine everywhere. I have included the pack version of jquery before including the validate plugin. Any thoughts or known

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-18 Thread Mandy Singh
Another observation: Including the validate plugins packed version throws an error in IE6 but works fine in IE7 and FF. using the min version works fine everywhere. I have included the pack version of jquery before including the validate plugin. Any thoughts or known issues for it on IE 6? Or

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Mandy Singh
In the validate(map) using focusInvalid: false, does the trick. On 5/18/07, Mandy Singh <[EMAIL PROTECTED]> wrote: I too have experienced an issue when a form field is hidden cos its populated by some other script on the page (on some user action) like for eg, selecting something from a custom

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Mandy Singh
It should probably be fixed at the plugin level, ie, if a field is hidden don't try to focus it. was wrking in FF but not in IE (I am on IE 7). On 5/18/07, Mandy Singh <[EMAIL PROTECTED]> wrote: In the validate(map) using focusInvalid: false, does the trick. On 5/18/07, Mandy Singh <[EMAIL P

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Mandy Singh
I too have experienced an issue when a form field is hidden cos its populated by some other script on the page (on some user action) like for eg, selecting something from a custom drop down widget populates a hidden field and till then the form validate is put on the hidden field. Once it reaches

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-17 Thread Jörn Zaefferer
[EMAIL PROTECTED] wrote: Gahh...I just fixed it. Apparently, when the validator script tries to focus on a field in a form that is hidden with display: none, ie throws some script error, and stops scripting. I can't believe how long it took to find that out. It was easy enough to p

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-12 Thread [EMAIL PROTECTED]
Gahh...I just fixed it. Apparently, when the validator script tries to focus on a field in a form that is hidden with display: none, ie throws some script error, and stops scripting. I can't believe how long it took to find that out. It was easy enough to position the form that was m

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-12 Thread oscar esp
I dont know if my problem has any relation (I am using form & validate pluggin) - I have a form with a submit button. (Submit button call a asp page to save all fields) - I have next code: jQuery('#seccionesForm').submit(function() { var options = { beforeSubmit: preSubmitSeccion, // pre-su

[jQuery] Re: validate plugin + form plugin + thickbox

2007-05-12 Thread [EMAIL PROTECTED]
Alright, after realizing that everything works perfectly well outside of the thickbox, it seems that that is the problem. I guess the question becomes, how do I load the form validation plugin and the forms plugin for an ajax submitting form within a thickbox. Thanks again, Chaim