[jQuery] Re: validation plugin addMethod does not work for me.

2009-10-22 Thread JMan
',     rules:{         nameField:{             company:true         }     } }); On Wed, Oct 21, 2009 at 22:04, JMan jbeck...@gmail.com wrote: what am I doing wrong here? I cannot figure out how to use the addMethod(). var frmSubmittal = $(#frmSubmittal); //validates the form

[jQuery] Re: validation plugin addMethod does not work for me.

2009-10-22 Thread JMan
your method to not confuse. On Thu, Oct 22, 2009 at 13:24, JMan jbeck...@gmail.com wrote: 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

[jQuery] jquery.com plugin directory

2009-10-22 Thread JMan
Is it just me or does anyone else have the hardest time finding plugins on the jquery.com site? jquery is an awesome library and I do not plan on using anything else anytime soon but the manner in which they catalog plugins on the site is terrible. I know these guys are capable of much better.

[jQuery] validation plugin addMethod does not work for me.

2009-10-21 Thread JMan
what am I doing wrong here? I cannot figure out how to use the addMethod(). var frmSubmittal = $(#frmSubmittal); //validates the form frmSubmittal.validate({ debug: false,

[jQuery] Re: loading message shows up after page has loaded

2009-10-21 Thread JMan
I think there is a bit of confusion here as to how Coldfusion works. By default the Coldfusion server will return the generated HTML all at once. So if you have a long query your not going to get even the first bit of the document until the CF server is done with it. What your asking your .js to

[jQuery] confused about form validation showErrors() method

2009-04-30 Thread JMan
I am trying to use the showErrors() method as a back up to the client side validation, My form have server side validation that returns a json string of invalid fields and a message for each and I was hoping to use that along with showErrors(). It seems like the only way I can get showErrors()

[jQuery] Managing scripts in AJAX applications

2009-04-01 Thread JMan
One thing I have been struggling with is AJAX applications is managing the js code that powers them. For example if you have a page that loads content from an AJAX call to the server and that content also has js code associated with it in order to function how do I manage that code? If I have 20

[jQuery] Re: Accordion v1.5 and interface together cause accordion to stop working

2007-09-01 Thread jman
] wrote: The problem is that interface overwrites jQuery's own animate function, but unfortunately in newer jQuery versions in a way that they behave differently. I had the same problem and renamed all occurrences of animate to ifxAnimate in my interface scripts. --Klaus jman

[jQuery] Re: Release: Accordion 1.5

2007-08-31 Thread jman
Hi, I am fairly new to jQuery in general, so this question might have been answered somewhere along the way. I have a problem using the accordion plugin with the interface plugin. They don't interact, just including the interface.js file on the same page makes the accordion stop working. It

[jQuery] accordian and interface conflict

2007-08-31 Thread jman
Hi, I am not sure if this is talked about elsewhere, but I have a problem using accordian 1.5 with the interface plugin. The problem is that when I click to open a different part of the accordian it does not show up. Following it in firebug the code jumps to the interface plugin at line 177

[jQuery] Accordion v1.5 and interface together cause accordion to stop working

2007-08-31 Thread jman
Hi, I am trying to use accordion and interface on the same page and the accordion will not work. On line 177 of the accordion file the execution goes to the interface file when it is included. If I remove the interface file from the page line 177 of the accordion jumps to the jquery animate

[jQuery] Re: jQuery.validator.addMethod How To

2007-05-10 Thread JMan
On May 10, 2:37 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: JMan schrieb: Hello, I am using the form validation plugin and I am stuck on the addMethod. I have created a method using the addMethod function, in this I have an ajax call to a server side page that validates the passed value

[jQuery] jQuery.validator.addMethod How To

2007-05-09 Thread JMan
Hello, I am using the form validation plugin and I am stuck on the addMethod. I have created a method using the addMethod function, in this I have an ajax call to a server side page that validates the passed value. Every thing works ok except I cannot figure out how to get the new userNameInUse