[jQuery] Re: jQuery validation plugin in Drupal

2008-10-02 Thread Jeroen Coumans
something to do with the fact that each id starts with edit-? When I try it with manually created markup, changing or removing the dashes doesn't help, but removing the edit- part does. Is there a workaround possible? Thanks, Jeroen On 29 sep, 00:06,Jeroen Coumans[EMAIL PROTECTED

[jQuery] Re: jQuery validation plugin in Drupal

2008-10-01 Thread Jeroen Coumans
them for custom rules or messages doesn't help. Thanks, Jeroen On 1 okt, 15:16, Jörn Zaefferer [EMAIL PROTECTED] wrote: Could you summarize the problem again? I looked at the testpage and couldn't see anything wrong with it. Jörn On Tue, Sep 30, 2008 at 6:16 PM, Jeroen Coumans [EMAIL

[jQuery] Re: jQuery validation plugin in Drupal

2008-10-01 Thread Jeroen Coumans
to work without having to hack the way Drupal spits out its forms? Regards, Jeroen On 1 okt, 15:16, Jörn Zaefferer [EMAIL PROTECTED] wrote: Could you summarize the problem again? I looked at the testpage and couldn't see anything wrong with it. Jörn On Tue, Sep 30, 2008 at 6:16 PM, Jeroen Coumans

[jQuery] Re: jQuery validation plugin in Drupal

2008-09-30 Thread Jeroen Coumans
Could it have something to do with the fact that each id starts with edit-? When I try it with manually created markup, changing or removing the dashes doesn't help, but removing the edit- part does. Is there a workaround possible? Thanks, Jeroen On 29 sep, 00:06, Jeroen Coumans [EMAIL

[jQuery] Re: [validate] jQuery validation plugin in Drupal

2008-09-28 Thread Jeroen Coumans
Hi, I've uploaded the form with the generated HTML markup at: http://lab.jeroencoumans.nl/register/ Thanks a lot, Jeroen On 27 sep, 13:26, Jörn Zaefferer [EMAIL PROTECTED] wrote: Yes, an example would help a lot. Jörn On Sat, Sep 27, 2008 at 12:45 PM, Jeroen Coumans [EMAIL PROTECTED

[jQuery] Re: [validate] jQuery validation plugin in Drupal

2008-09-27 Thread Jeroen Coumans
of what I'm trying to achieve? Thanks, Jeroen On 27 sep, 02:57, Jörn Zaefferer [EMAIL PROTECTED] wrote: Yes, details can be found here:http://docs.jquery.com/Plugins/Validation/Reference#Fields_with_compl... Jörn On Sat, Sep 27, 2008 at 2:34 AM, Jeroen Coumans [EMAIL PROTECTED] wrote: Hi

[jQuery] [validate] jQuery validation plugin in Drupal

2008-09-26 Thread Jeroen Coumans
Hi, When trying to use the validator plugin, I get the following error: missing : after property id edit-name: required, It seems like it has problems with the - that Drupal puts in the id's of each form field. Is there a workaround possible? Thanks, Jeroen Coumans

[jQuery] tabs custom animation

2008-03-02 Thread Jeroen Coumans
? Thanks, Jeroen Coumans

[jQuery] combining Cycle and Thickbox

2008-02-11 Thread Jeroen Coumans
, the cycle plugin doesn't seem to work inside the thickbox, eg. the pager doesn't work and the slides don't automatically change. Anybody got an idea on how to solve this? Thanks! Regards, Jeroen Coumans

[jQuery] How do child selectors work in jQuery?

2007-08-29 Thread Jeroen Coumans
Hi, See http://lab.jeroencoumans.nl/jquery/child-selector.html It's my understanding that child selectors only select direct children of an element. Thus, $('#test li') should only select direct descendent li elements of #test, not nested li's. This is confirmed with a simple CSS rule. So how

[jQuery] Re: How do child selectors work in jQuery?

2007-08-29 Thread Jeroen Coumans
and a to make sure you only select the immediate a tags of the li only ... instead of all the a tags within the li. $('#test li a').click(...); -- Brandon Aaron On 8/29/07, Jeroen Coumans [EMAIL PROTECTED] wrote: Hi, See http://lab.jeroencoumans.nl/jquery/child-selector.html It's my

[jQuery] Re: How do child selectors work in jQuery?

2007-08-29 Thread Jeroen Coumans
, Brandon Aaron [EMAIL PROTECTED] wrote: Actually it works this way in the CSS Spec also and your test file proves it. Just use this selector instead of your other selector: #test li a -- Brandon Aaron On 8/29/07, Jeroen Coumans [EMAIL PROTECTED] wrote: Thanks for the explanation

[jQuery] Re: Strange bug with slide function and input elements

2007-08-20 Thread Jeroen Coumans
Hi, I still don't understand why I see this effect in the list with input elements and not in the list without input elements, but your solution works perfect, thanks! Jeroen On Aug 19, 6:32 pm, Bernd Matzner [EMAIL PROTECTED] wrote: Hi Jeroen, the slideUp and slideDown animations are

[jQuery] Strange bug with slide function and input elements

2007-08-19 Thread Jeroen Coumans
. This happens in Firefox and IE7, but not in Safari 2.x or IE6. Anybody got a clue what's going on? Thanks, Jeroen Coumans

[jQuery] Put attribute value in class

2007-07-25 Thread Jeroen Coumans
Hi, I'm trying to put an attribute value as a class in my element: HTML: ul li lang=entext/li li lang=nltext/li li lang=ittext/li /ul jQuery: $(li).each(function(){ var lang = $('#language [EMAIL PROTECTED]'); $(this).addClass(lang); }); Which gives an error about c.split not

[jQuery] Re: Feature suggestion: animating through stylesheets

2007-07-07 Thread Jeroen Coumans
Simple fix: provide a CSS file with the plugin which the author can integrate themselves. Then selectors can be made as specific as needed, and it would enable lots of CSS-savy designers with little Javascript skills to customize the effects. -- Jeroen Coumans On Jul 5, 9:56 pm, Scott Sauyet