In your attachBehavior method, u r attaching the click event every time. This means that during each run, the same handler is run multiple times. That is what is causing ur problem. Attach the click() event only once, and u should see consistent results.
-GTG On 8/2/07, offwhite <[EMAIL PROTECTED]> wrote: > > > http://brennan.offwhite.net/fasterjquery/ > > I put together a test to see how well jQuery would perform if I > carefully chained multiple functions together or use the "each" > function or completely break them up into separate calls. I was able > to show the chaining is the fastest while the each function still > performed alright. > > What I discovered was that when the functions are run again they take > longer. And it adds up each time. I would like to know if there is > something I should do or if there is something in jQuery that is > causing this behavior. > > You can see the sample here... > > http://brennan.offwhite.net/fasterjquery/ > >

