[jQuery] Validate: Display errors after Ajax form submit

2009-11-25 Thread Ted
I have the validator setup nicely with client side rules and some remote validations. That part is working well. When the form is submitted (via ajax) there may be some more complicated server side validations that generate errors. (Such as checking a credit card with the cc service, db

[jQuery] Re: Tips on multi field validation - Composite unique constraint

2009-04-09 Thread Ted
Does anyone have a suggestion about multi field validations? Is this even something the plugin has designed for yet?

[jQuery] [validate] Tips on multi field validation - Composite unique constraint

2009-04-03 Thread Ted
. Looking for ideas to implement an N field validation nicely. (I used a ClassRule for single field unique checks, but that doesn't help here.) Thanks, Ted var constraint = ['user', 'group']; $.each(constraint, function(index, value) { $(# + value).rules

[jQuery] [validate] submitHandler prevents cancel value from being included in POST

2009-02-19 Thread Ted
I have a simple form with submit and cancel buttons. Standalone everything works great. With the basic validator added, it also works great, cancel is recognized and validation is skipped. When the submitHandler is added validation works, but all the data EXCEPT for the cancel (_cancel=Cancel)

[jQuery] hoverIntent like delays when using mouseenter, mouseleave

2009-01-13 Thread Ted
Is it possible to setup hoverIntent like delays when using mouseenter, mouseleave? I did some digging in to hoverIntent, but didn't see any support for the mouseenter/mouseleave triggers. Is there a way to do this in Jquery? I've got the following bit of code triggering a menu, but I'd like a

[jQuery] Re: Need help with a Jquery toggle bug in my menu's

2009-01-12 Thread Ted
and then in. To workaround this problem we can add an extra .hover() event listener to li's ... Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com On Sat, Jan 10, 2009 at 9:12 PM, Ted theodorew...@gmail.com wrote: Sorry, very new to Jquery (and not that skilled at js to begin with). I think I

[jQuery] Re: Need help with a Jquery toggle bug in my menu's

2009-01-12 Thread Ted
will need to move his mouse out and then in. To workaround this problem we can add an extra .hover() event listener to li's ... Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com On Sat, Jan 10, 2009 at 9:12 PM, Ted theodorew...@gmail.com wrote: Sorry, very new to Jquery

[jQuery] Re: Using jquery to construct menus like nbc.com

2009-01-07 Thread Ted
; }); }); /script ...is there anything I can do to make Jquery set all menus to be off right after load, to ensure this bug doesn't happen? Here's my test case: http://dl.getdropbox.com/u/21984/menu_test/menu_test.html Thanks for any help! On Dec 8 2008, 8:59 am, Ted

[jQuery] Re: Jquery Tabs issue, linking to another tab from within the same document...

2008-12-31 Thread Ted
Yes, that is correct. On Dec 31, 7:33 am, Klaus Hartl klaus.ha...@googlemail.com wrote: I assume you're using UI Tabs... http://docs.jquery.com/UI/Tabs#...select_a_tab_from_a_text_link_inste... --Klaus On 30 Dez., 19:09, Ted theodorew...@gmail.com wrote: I'm having a problem

[jQuery] Re: Jquery Tabs issue, linking to another tab from within the same document...

2008-12-31 Thread Ted
#...select_a_tab_from_a_text_link_inste... --Klaus On 30 Dez., 19:09, Ted theodorew...@gmail.com wrote: I'm having a problem with Jquery's tab plugin. Specifically, I've got a page with a couple of tabs. On that page, in one of the tabs, is a link to another tab. However, the link doesn't work

[jQuery] Jquery Tabs issue, linking to another tab from within the same document...

2008-12-30 Thread Ted
by clicking on the main navigation that has page.html#tab3 as the link, it doesn't work. Anyone know of a fix for this? Thanks, Ted

[jQuery] Trouble with adding 'addClass' to an existing piece of Jquery code

2008-12-10 Thread Ted
I'm having trouble having Jquery add a class to a piece of code. I've tried adding the class via addClass method, and I've also tried chaining it in to the current Jquery code for mouseenter and mouseleave, but neither is working. Here's the Jquery section of the javascript:

[jQuery] Re: Trouble with adding 'addClass' to an existing piece of Jquery code

2008-12-10 Thread Ted
(menu-on).children('div').hide ();     } ); On Dec 10, 9:11 am, Ted [EMAIL PROTECTED] wrote: I'm having trouble having Jquery add a class to a piece of code. I've tried adding the class via addClass method, and I've also tried chaining it in to the current  Jquery code for mouseenter

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-12-08 Thread Ted
://dl.getdropbox.com/u/21984/navigation.html Thanks - Ted On Dec 1, 8:28 pm, Jeffrey Kretz [EMAIL PROTECTED] wrote: Here's what I believe is happening. You have an LI that is a certain height, about 21px. This LI is inside a div that is larger, 36px. The floating DIVs are positioned

[jQuery] Re: Problem with Jquery tabs

2008-12-02 Thread Ted
That works, but this line of code - $(tabContainers).hide().filter(this.hash).show(); ...is supposed to hide all the tabs and show the first tab upon execution. The cited example at jqueryfordesigners.com doesn't require you to manually hide the divs with css, the jquery code is supposed to do

[jQuery] Using jquery to construct menus like nbc.com

2008-11-25 Thread Ted
reason in IE6/IE7, the divs don't show when they are over a Flash object. Does anybody have any ideas on how to take items #1 and #2? Thanks in advance, Ted

[jQuery] Re: Using jquery to construct menus like nbc.com

2008-11-25 Thread Ted
I have, and have used the suckerfish method before. The problem is I've already created the CSS for the menus based upon them living each in their own div, and would like to engineer them based upon that as opposed to having to recode the CSS based upon another method. Basically my HTML looks

[jQuery] Re: Behaviour difference in XML document selectors in 1.13?

2007-07-04 Thread Ted McFadden
looked at in a type2 search. Thanks again, Ted On 7/2/07, Tony [EMAIL PROTECTED] wrote: Hi, I have the same problem with 1.1.3 This should resolve your problem: $('type1', responseXML), $('type1 type2', responseXML), $('type1 type3', responseXML) $('type1 type3 type4',responseXML

[jQuery] Behaviour difference in XML document selectors in 1.13?

2007-07-02 Thread Ted McFadden
]. Any suggestions would be welcome. Cheers, Ted