I am using Meteor,so can someone suggest me what could be the event which can be handled after a Template is displayed(not loaded)...? For example , I have a template which displays a modal popup. Now I want to do something after the template is "displayed" (not loaded). Please suggest me how to handle the respective event. I have tried,
<template name = "SendMessage">
//modal popup code
{{check}}
</template>
Template.SendMessage.check = function(){
alert("load");
};