I have index.php and use jQuery .load() to load content from load.php.
When I trigger an event on elements that are in the index.php, the event fires. On the same elemen
The click event binder does not bind to any elements created after execution. You can add a click listener immediately following the .load() method, or you can use something like live or delegate to bind to element patterns in the DOM.
click
.load()
live
delegate