Visit Mozilla.org

DOM:event.currentTarget

From MDC

« Gecko DOM Reference

Contents

[edit] Summary

Identifies the current target for the event, as the event traverses the DOM.

See also Comparison of Event Targets.

[edit] Syntax

target = event.currentTarget;
  • target is a reference to the EventTarget whose event listeners are currently being processed.

[edit] Example

[edit] Specification

DOM Level 2 Events: Event.currentTarget