current_target property

current_target property

Used to indicate the IEventTarget whose IEventListeners are currently being processed. This is particularly useful during capturing and bubbling.

Definition:

@property
def current_target(self):
    ...
@current_target.setter
def current_target(self, value):
    ...

See Also