Skip to content

Instantly share code, notes, and snippets.

//That doesn't work
Template.onRendered(function() { $(".message").on('click', function(e) { //how do I get the MongoDB document? }); });
//That works
Template.chat.helpers({
'click .message': function(e) { alert(this._id); }
});