I\'m trying to get the clicked element so that I can add class. Does Meteor provides any way to get the current element like jQuery $ (this)
Template.retrain
From this you can get textbox value with one button click event.
Try this:
Template.retraining.events({ 'click .myclass':function(e,t){ var val = t.find(".classname").value; }