What is the appropriate method to get the already-initialized javascript to interact with content loaded using jQuery's load() method?
Example: You have a table with an onclick event for each row, then append() a new row to the table, suddenly the onclick() event does not fire.
Hopefully it is possible to do this without manually re-initializing every event by writing it into the code that executes the load().
I've looked at $.getScript, live(), and bind() - but haven't gotten any to work. Before I head into hours of trial-and-error, I'd appreciate some guidance.