[jQuery] Re: $.live and performance

2009-01-25 Thread Ami
Thank you On Jan 23, 6:08 pm, Ricardo Tomasi ricardob...@gmail.com wrote: Live uses event delegation. It will capture events on the 'document' element and then find out which element was clicked, if it matches 'span[attr=value]' then your function is called. Read all about it at the

[jQuery] Re: $.live and performance

2009-01-23 Thread Ricardo Tomasi
Live uses event delegation. It will capture events on the 'document' element and then find out which element was clicked, if it matches 'span[attr=value]' then your function is called. Read all about it at the docs: http://docs.jquery.com/Events/live On Jan 23, 3:13 am, Ami aminad...@gmail.com