All "event" properties in Javascript ?
// Common Event Properties event.type; // Type of the event (e.g., "click", "keydown"). event.target; // Element that triggered the event. event.currentTarget; // Element to which the event handler is attached. event.bubbles; // Boolean indicating if the event bubbles up through the DOM. event.cancelable; // Boolean indicating if the event can be canceled. event.defaultPrevented; // Boolean indicating if preventDefault() was called. event.eventPhase; // Current phase of event propagation (1 = capturing, 2 = at target, 3 = bubbling). event.isTrusted; // Boolean indicating if the event was generated by a user action or script. event.timeStamp; // Time when the event was created. // Comm...