I am trying to figure out the best and most inexpensive way to attach jQuery plugins and some basic UI setup functions.
Currently, I can think of two ways:
1) Fire a function after rendering the view. This means that each time the view is rendered, the plugins, etc are re-attached. Could this cause memory, etc issues?
2) Somehow mimic jQuery .live() for plugins... I don't know if that's even possible
Any ideas?