views:

174

answers:

1

What if I want not only to add events for all future added, but also want to put some data in them, execute it as an init event for them. Is there possible to use something from live tools?

+1  A: 

No event exists in the dom for item creation. The only option you have is to use the liveQuery plugin which scans the dom every x milliseconds looking for selector matches. When a new element is found it will run a function.

I do not really like the overhead of this however it may give you the desired functionality.

redsquare