jQuery Best Practices (Code Project)
Very useful article about jQuery Best Practices at Code Project.
The most interesting IMO:
Tip 11: Live Event Handlers
Sets an event handler for any element that matches a selector, even if it gets added to the DOM after the initial page load:
$('button.yourClassName').live('click', yourFunctionName);