target Event Property
Examples
Get the element where the event occurred:
Get the name of the element where the event occurred:
More examples below.
Description
The target property returns the element where the event occured.
The target property is read-only.
The target property returns the element on which the event occurred,
opposed to the currentTarget property,
which returns the element whose event listener triggered the event.
See Also:
Syntax
Technical Details
| Return Value: | An Object. The object where the event originally occured. |
|---|---|
| DOM Version: | DOM Level 2 Events. |
More examples
Example
Get the element that triggered the event:
Example
Get the name of the element that triggered the event:
Browser Support
event.target is a DOM Level 2 (2001) feature.
It is fully supported in all browsers:
| Chrome | Edge | Firefox | Safari | Opera | IE |
| Yes | Yes | Yes | Yes | Yes | 9-11 |