[jQuery] Re: Are there click events from dynamically added DOM elements?

2007-08-30 Thread ethanpil
Live Query does the trick! Another amazing piece of code from the JQuery community! I didn't know that events wont bind to elements created after the DOM has been built the first time. And I guess that now it doesn't matter anyway! On Aug 22, 6:11 pm, duma <[EMAIL PROTECTED]> wrote: > Well, the

[jQuery] Re: Are there click events from dynamically added DOM elements?

2007-08-22 Thread duma
Well, the row element doesn't exist in the document yet, so your call to $("#10192") won't find anything. If you insert newrow into the document (e.g. with $("#YourTargetElement").append(newrow)), and then do your click actions (i.e. with $("#10192").click(function() {})), it should work. Alter