[jQuery] jquery validation with added method

2009-03-04 Thread dailo
i've added this to the top of my page jQuery.validator.addMethod("pCode", function(value) { // Addon method for validating postal codes. Valid formats are (X1X 1X1) or (X1X1X1) or (X1X-1X1). return value.match(/^[a-zA-Z][0-9][a-zA-Z](-| )?[0-9][a-zA-Z] [0-9]$/);

[jQuery] Re: mouseover + slide down question

2007-04-18 Thread dailo
actually i was just thinking of a workaround..is there a way to put a delay on the slidedown? Or i guess a delay on a mouseover On Apr 18, 1:09 pm, dailo <[EMAIL PROTECTED]> wrote: > I've set up a horizontal nav and have slide down divs for each element > for the subnav. It w

[jQuery] mouseover + slide down question

2007-04-18 Thread dailo
I've set up a horizontal nav and have slide down divs for each element for the subnav. It works fine for now but when I run over the navs too fast i notice the subnav divs stay up because it'll wait until the animation is done before it treats it as a real div...anyways here my snippet of code her