[jQuery] Selecting dynamic elements

[jQuery] Selecting dynamic elements


Is it possible to select an element from dynamically created elements
before the tree is attached to the document? Given:
$elems = $('<div id="outer"><div id="inner">hello</div></div>');
Is there any way to select and operate on the "inner" div before
attaching these element to anything?