Is there a way to change the element in a Meteor app? Seems templates are only processed in the .
You can extend David Wihl's solution:
Deps.autorun(function(){ document.title = Session.get("DocumentTitle"); });
Then You can in any time call:
Session.set("DocumentTitle","New Document Title");