Meteor jQuery $( this )

1
2
3
4
5
Template.layout.events({
'mouseover .button': function (e) {
$(e.target).addClass('reverse');
}
});
Share