Ahh you are probably right. So is this a bug with jquery.validate.js, or is tickets.com at fault for not using valid URLs? That URL certainly works from any browser.
-j On Apr 7, 2:45 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Just a guess, but probably because there is no ".html" or ".jsp" or whatever > before the query string. > > -- Josh > > ----- Original Message ----- > From: "js" <[EMAIL PROTECTED]> > To: "jQuery (English)" <jquery-en@googlegroups.com> > Sent: Monday, April 07, 2008 2:28 PM > Subject: [jQuery] [validate] URL validation failing on a valid URL. > > > Is there a reason why URL validation is failing on the following URL? > > >http://purchase.tickets.com/buy/TicketPurchase?organ_val=22031&perfco... > > > It works fine on any other URLs I've tried. > > My jQuery code looks like this: > > > jQuery(document).ready(function($){ > > $('#theForm').validate({ > > errorClass: 'validationError', > > rules: { > > url: { > > url: true > > }, > > email: { > > email: true > > } > > } > > }); > > });