$('.test').click( function() {
$(this).remove();
});
class Test {
constructor(item) {
this.wrapper = $(item);
this.setClickEvent();
}
setClickEvent(item) {
this.wrapper.click( () => {
// do some things
this.remove();
});
}
remove() {
// do some things
this.wrapper.remove();
}
}
new Test('.test');