jquery event source

JavaScript
//target is the element that triggered the event 
let source1 = event.target;
//currentTarget is the element that the event listener is attached to.
let source2 = event.currentTarget;
Source

Also in JavaScript: