As it is an event, User Interface provides you : e.target.
For instance: $(e.target). hide(); or sym.$(e.target).hide(). The current element (button) will be hidden.
console.log( e.type, e.target ) returns the event and the target.
console.log( e.target.id ) returns the id of the element targeted.