This is how I ended up doing it:
var test = $("<div/>");
test.append(html);
test.find(".innertest");
// When I'm ready to append it..
$('#container').append(test);
I had to modify my HTML stream, but this ended up being a clean approach. Thanks for all your suggestions!