What's the use case for doing something like this?
Why not:
<template name="stack_embed">
<div id='explainer'></div>
</template>
and then in the JS do something like
Template.stack_embed.rendered = function() {
Meteor.http.call(...);
$('#explainer').html(...);
};
You can then deal with error handling, and have better control of your flow.
> --
>
>