With Meteor you deal with event handling using event maps. Here’s a snippet to define an event map scoped to a template.
Template.myTemplate.events({
'click #myEl': function(evt, tpl) {
evt.preventDefault();
// do stuff
}
});
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.
Sign up