Re: [jQuery] event reattach

2007-03-15 Thread Jonathan Chaffer
missed a substantial thread on this topic. You can view the responses, which should give you some good ideas, in the list archives: http://jquery.com/pipermail/discuss_jquery.com/2007-March/027029.html Hope this helps! -- Jonathan Chaffer Technology Officer, Structure Interactive

Re: [jQuery] the pitfalls of jquery

2007-03-14 Thread Jonathan Chaffer
to even start writing the code without $() at my fingertips. We finished the project using only homespun code, but late and over budget of course. -- Jonathan Chaffer Technology Officer, Structure Interactive (616) 364-7423http://www.structureinteractive.com

Re: [jQuery] Loading with animation effect

2007-03-09 Thread Jonathan Chaffer
() { $('#loading').hide(); $(this).slideDown('slow'); }); }); -- Jonathan Chaffer Technology Officer, Structure Interactive (616) 364-7423http://www.structureinteractive.com/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Best practices for reattaching behaviours todynamically loaded content?

2007-03-07 Thread Jonathan Chaffer
, the event context is now wrong, so we compensate for this by checking what the event's target attribute is. If the target is of the right type, we perform our normal action; otherwise, we do nothing. --- More coming soon! -- Jonathan Chaffer Technology Officer

Re: [jQuery] Help with animate()

2007-02-27 Thread Jonathan Chaffer
whatsoever. $(#myDiv).animate({right: 100}, slow); In addition to the comments already given, you will want to change right to left here. To move an item to the *right*, you need to change its distance from the *left* side of the enclosing element. -- Jonathan Chaffer Technology Officer

Re: [jQuery] Unable to chain Find with multiple classes

2007-02-20 Thread Jonathan Chaffer
in the matched set, this is because an ancestor of the elements was already in the matched set. -- Jonathan Chaffer Technology Officer, Structure Interactive (616) 364-7423http://www.structureinteractive.com/ ___ jQuery mailing list discuss

Re: [jQuery] Parent Selection Problem

2007-02-15 Thread Jonathan Chaffer
parents of the element that match div.parent. -- Jonathan Chaffer Technology Officer, Structure Interactive (616) 364-7423http://www.structureinteractive.com/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] update a div within a submit

2006-09-06 Thread Jonathan Chaffer
On Sep 6, 2006, at 13:32 , kain wrote: I just want to ask what's the equivalent code of updating a div with the results of a form action when hitting a submit button of jquery instead of scriptaculous and prototype. I think you're going to want to use the forms plugin for this. On this page: