[jQuery] Re: Event Capture Architecture

2008-11-12 Thread Johannes Kupser
Can't you give the elements the same class and bind the class with the click event?

[jQuery] Re: Event Capture Architecture

2008-11-12 Thread Shawn Grover
For ease of coding, a separate bind method for each element is pretty straight forward. However when you are dealing with a large number of elements, and your processing needs to look at those large number of elements, then performance can get to be a problem. For instance $(".myclass"

[jQuery] Re: Event Capture Architecture

2008-11-12 Thread Liam Potter
I would do a seperate bind method for each element saqib wrote: Is there any open source project so that I can their working in this scenario (ie multiple event capture) On Nov 10, 9:33 pm, saqib <[EMAIL PROTECTED]> wrote: I am developing an application in which I have to define click even

[jQuery] Re: Event Capture Architecture

2008-11-12 Thread saqib
Is there any open source project so that I can their working in this scenario (ie multiple event capture) On Nov 10, 9:33 pm, saqib <[EMAIL PROTECTED]> wrote: > I am developing an application in which I have to define click events > for many elements( the list may go up to hundreds). So what woul