Say you have:
pre: function preLink(scope, element, attrs) {
element.append('<div id="foo">foo</div>');
}
... and then you want to get a handle on the new foo element.
How is that possible?
Currently I have to run $compile on it, assign a directive to the div, and access it that way.