[jQuery] Re: attaching events to large table

2007-07-05 Thread Josh Bush
Thank you kind sir. You just made my day. There was two similar calls in that plugin one for click and the other for double click. It was taking 16+ seconds and is now a respectable 300ms. Josh On Jul 5, 11:03 am, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > Josh, > > > > >I have a table

[jQuery] Re: attaching events to large table

2007-07-05 Thread Dan G. Switzer, II
Josh, >I have a table that has 1,000 rows and I'm trying to bind a function >to the click event of each row. This can be quite slow the way I'm >currently doing it. Here is an example my my current process: > > this.find(settings.selector).click(function(){selectRow(this);}); > > fu