[jQuery] Re: Simplemodal causes validators to fire on webform

2009-01-12 Thread tawright915
I figured it out. The close button on my modal panel was set to causes validation = true. I set that to false and all works fine. Thanks for the help. Your post got me thinking about that. Tom On Jan 10, 1:13 am, "jQuery Lover" wrote: > You probably binding your validators to ALL input[type=

[jQuery] Re: Simplemodal causes validators to fire on webform

2009-01-12 Thread tawright915
would this work if I have some fields using the jquery validate plugin (for masked fields) and some using the MS required field validator? Tom On Jan 10, 1:13 am, "jQuery Lover" wrote: > You probably binding your validators to ALL input[type=submit] or to > some class (Ex: .submit) > > If so g

[jQuery] Re: Simplemodal causes validators to fire on webform

2009-01-09 Thread jQuery Lover
You probably binding your validators to ALL input[type=submit] or to some class (Ex: .submit) If so give your selector a scope $('.submit-button', document.forms[0]).bind()... jQuery HowTo Resource - http://jquery-howto.blogspot.com On Thu, Jan 8, 2009 at 9:31 PM, tawright915 wrote: > > Wh

[jQuery] Re: Simplemodal causes validators to fire on webform

2009-01-09 Thread Eric Martin
Tom, I'd need to see the code or a simplified test case to know what is going on. -Eric On Jan 8, 8:31 am, tawright915 wrote: > When I click the close button on my modal message box it causes the > required field validators to fire on my form.  Is there a way to stop > this from happening? > >