Since you are binding the handler to th
you can use the currentTarget property. The target property refers to the element which dispatched the event.
_onHeaderClick(event) {
event.preventDefault();
console.log(event.currentTarget);
}
Since you are binding the handler to th
you can use the currentTarget property. The target property refers to the element which dispatched the event.
_onHeaderClick(event) {
event.preventDefault();
console.log(event.currentTarget);
}