target property

target property

Returns the node the mutation affected, depending on the type. For “attributes”, it is the element whose attribute changed. For “characterData”, it is the CharacterData node. For “childList”, it is the node whose children changed.

Definition:

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

See Also