Okay, perhaps I didn't explain what I wanted correctly. The purpose is to basically be able to run a set of functions on newly inserted html - efficiently, without having to manually call them.
For now I am going to go with the code I wrote below. Initially, you have templates on your page, and you bind functions for certain selectors (that exist inside of your template) to all your templates. So that when you insert the template into the page, those selectors try to match inside of your template, and run binded functions.
The code below is neither efficient, nor optimized or thoroughly tested. So, I am not going to accept it as the final answer. It is just a sample solution, and kind of hacky anyway. But it works. I am sure backbone.js or some plugin do it much better, so I'll wait for a JS guru to show the right way.
As a sidenote: I realize there's 2 disadvantages: a) the way of setting html has to be done through template object, rather than natural jQuery way, and b) template is inserted into DOM, and only then functions start running on it. My first version did work on the template before it was inserted, but some functions like .replaceWith() don't work exactly the same on strings as on DOM nodes. On the plus side, the code is tiny, and does just what I wanted.
<html>
<body>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript">
window.template = {
queue: {},
set: function(container, content) {
/* first insert content */
container.html(content);
/* now run a list of functions in the queue */
$.each(this.queue, function(s, fs) {
var el = $(s, container);
for (var i = 0, len = fs.length; i < len; ++i)
el.each(fs[i]);
});
},
bind: function(selector, func) {
if (typeof this.queue[selector] === 'undefined')
this.queue[selector] = [];
/* push function to queue for that specific selector */
this.queue[selector].push(func);
}
};
$(function() {
var templateContents = $('#my-template').html();
/* for each <label>, replace it with another <input> */
template.bind('label[for="first_name"]', function() {
$(this).replaceWith('<input type="text" name="last_name" value="last name" />');
});
$('a').click(function(e) {
e.preventDefault();
$('body').append('<div class="container"></div>');
/* get the div that we just appended to body */
var newDiv = $('.container').last();
/* set that newDiv's html to templateContents, and run binded functions */
template.set(newDiv, templateContents);
});
});
</script>
</head>
<body>
<script id="my-template" type="text/template">
<label for="first_name">name</label>
<input type="text" name="first_name" />
</script>
<a href="#">add dynamically</a>
</body>
</html>
:). – Jared Farrish Sep 21 '11 at 22:51