I can not beautifully describe, so it’s better to show with an example.
In the example below, when this event fires, it will refer to the DOM element that triggered the event.
How, in this case, to access the object without knowing its name.
object = { method : function(){ this } }; myObject = Object.create(object); $('someone').click(myObject.method)