In HTML: (click)="onClick($event)"
Inside de function onClick, you can catch the event and use it like a jquery object, like this:
onClick(event){
$(event.target).siblings('div').toggle(500);
}
In this example, I search for the sibling of my target object, you could do that with any object you need.