Jquery makes it easy to register callbacks on events happening in a doc. However, in one of the apps we’re building, we need to register callbacks on existing elements in the page, but also on elements that are loaded later via Ajax upon user actions.
Jquery makes it easy to register callbacks on events happening in a doc. However,
Share
Take a look at jQuery ‘live’ http://api.jquery.com/live/
Let’s you do exactly what you are trying.
Bob