[jQuery] Re: table striping performance with livequery

2008-11-26 Thread Lance White
unsubscribe On 25/11/08 9:39 PM, Carpii [EMAIL PROTECTED] wrote: Thanks Brandon, that looks very interesting. Ive read a lot about event handling in jQuery and there seems to be a lot of different plugins, so it was hard to decide which one is best suited. Is there a time when

[jQuery] Re: table striping performance with livequery

2008-11-26 Thread Karl Swedberg
http://www.letmegooglethatforyou.com/?q=How+do+I+unsubscribe+from+a+group%3F --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 26, 2008, at 3:45 AM, Lance White wrote: unsubscribe On 25/11/08 9:39 PM, Carpii [EMAIL PROTECTED] wrote: Thanks Brandon,

[jQuery] Re: table striping performance with livequery

2008-11-26 Thread Ariel Flesler
Hahaha! that site is great. How come I've never seen that before :D On Wed, Nov 26, 2008 at 10:22 AM, Karl Swedberg [EMAIL PROTECTED] wrote: http://www.letmegooglethatforyou.com/?q=How+do+I+unsubscribe+from+a+group%3F --Karl Karl Swedberg www.englishrules.com

[jQuery] Re: table striping performance with livequery

2008-11-25 Thread Carpii
Thanks Brandon, that looks very interesting. Ive read a lot about event handling in jQuery and there seems to be a lot of different plugins, so it was hard to decide which one is best suited. Is there a time when livequery is more suitable than listen? Or even a time when I might want to use

[jQuery] Re: table striping performance with livequery

2008-11-25 Thread Ariel Flesler
LiveQuery supports the whole set of selectors, while Listen doesn't. There's also Intercept, which is sort of in the middle. It uses event delegation, and supports any selector. But it also has more overhead than Listen. IMO, If you can solve your situation with Listen, than go ahead. But if

[jQuery] Re: table striping performance with livequery

2008-11-24 Thread Brandon Aaron
When dealing with tables, event delegation is almost always the best way to handle it. You might want to give jQuery.listen plugin a try. http://plugins.jquery.com/project/Listen -- Brandon Aaron On Mon, Nov 24, 2008 at 8:36 AM, Carpii [EMAIL PROTECTED] wrote: Hi all, ive just started using